Tagged Questions
0
votes
1answer
84 views
Python 2.6 decorator with parameter
I'm writing filesystem cache decorator for django. The problem is when I decorate my function with this decorator and @register.simple_tag I get my_decorated_func takes 0 arguments error (when page is ...
0
votes
4answers
119 views
Does it matter when a decorator gets called (at the beginning or at the end of the method) in the decorator pattern?
I'm implementing a decorator pattern in Javascript.
I've seen the example here in Wikipedia
// Class to be decorated
function Coffee() {
this.cost = function() {
return 1;
};
}
// ...