Tagged Questions

Decorator is an object-oriented design pattern that allows adding behavior to existing classes in a dynamic fashion.

learn more… | top users | synonyms (1)

271
votes
7answers
59k views

Understanding Python decorators

How can I make a decorator in Python that would do the following. @makebold @makeitalic def say(): return "Hello" which should return <b><i>Hello</i></b> I'm not ...
154
votes
7answers
17k views

What is the difference between @staticmethod and @classmethod in Python?

What is the difference between a function decorated with @staticmethod and one decorated with @classmethod?
59
votes
6answers
8k views

ASP.NET MVC Routing Via Method Attributes

In the StackOverflow Podcast #54, Jeff mentions they register their URL routes in the StackOverflow codebase via an attribute above the method that handles the route. Sounds like a good concept (with ...
49
votes
13answers
6k views

What are some common uses for Python decorators?

While I like to think of myself as a reasonably competent Python coder, one aspect of the language I've never been able to grok is decorators. I know what they are (superficially), I've read ...
26
votes
2answers
5k views

What does functools.wraps do?

In a comment on the answer to another question, someone said they weren't sure what functools.wraps was doing. So I'm asking this question so that there will be a record of it on StackOverflow for ...
26
votes
4answers
7k views

Getting method parameter names in python

Given the python function: def aMethod(arg1, arg2): pass How can I extract the number and names of the arguments. Ie. given that I have a reference to func, I want the func.[something] to ...
24
votes
3answers
2k views

Please help me understand the “Decorator Pattern” with a real world example.

I was studying the Decorator Pattern as documented in GOF. It seems like a complicated design pattern to me. So please, help me understand the Decorator Pattern. Could someone give a use-case example ...
23
votes
3answers
15k views

Python Class Decorator

In Python 2.5, is there a way to create a decorator that decorates a class? Specifically, I want to use a decorator to add a member to a class and change the constructor to take a value for that ...
18
votes
4answers
1k views

Python lazy property decorator

Recently I've gone through an existing code base and refactored a lot of instance attributes to be lazy, ie. not be initialised in the constructor but only upon first read. These attributes do not ...
18
votes
8answers
801 views

What are Python metaclasses useful for?

What can be done with metaclasses that can't be in any other way? Alex Martelli told that there are tasks that can't be achieved without metaclasses here ...
16
votes
3answers
3k views

Decorator classes in Python

I want to construct classes for use as decorators with the following principles intact: It should be possible to stack multiple such class decorators on top off 1 function. The resulting function ...
16
votes
7answers
3k views

How to create a Python decorator that can be used either with or without parameters?

I'd like to create a Python decorator that can be used either with parameters: @redirect_output("somewhere.log") def foo(): .... or without them (for instance to redirect the output to stderr ...
15
votes
7answers
1k views

Creating a singleton in python

This question is not for the discussion of whether or not the Singleton design pattern is desirable, is an anti-pattern, or for any religious wars, but to discuss how this pattern is best implemented ...
15
votes
8answers
5k views

Zend Framework forms, decorators and validation: should I go back to plain HTML?

I am currently working on a pretty large application which contains a lot of forms. Up to this moment, I have always been writing my forms by hand and writing my own validation logic, but I have ...
13
votes
2answers
604 views

Howto get all methods of a python class with given decorator

How to get all methods of a given class A that are decorated with the @decorator2? class A(): def method_a(self): pass @decorator1 def method_b(self, b): pass ...
13
votes
8answers
890 views

when do we need Decorator Pattern?

when do we need to go for Decorator pattern? If possible give me a real world example that suits that pattern...
13
votes
2answers
1k views

Python logging using a decorator

This is the first example we meet when we face with decorators. But I'm not able to realize what exactly I would like. A simple decorator named LOG. It should work like this: @LOG def f(a, b=2, *c, ...
13
votes
4answers
1k views

Python - is there a list of decorators somewhere?

I know of @staticmethod, @classmethod, and @property, but only through scattered documentation. Is there a complete list of function decorators that are built into Python?
12
votes
5answers
270 views

Class decorators vs function decorators

In python there are two ways to declare decorators: Class based class mydecorator(object): def __init__(self, f): self.f = f def __call__(self, *k, **kw): # before f actions ...
12
votes
3answers
3k views

Python decorators in classes

can one write sth like: class Test(object): def _decorator(self, foo): foo() @self._decorator def bar(self): pass This fails: self in @self is unknown I also tried: ...
12
votes
3answers
1k views

Python - How do I write a decorator that restores the cwd?

How do I write a decorator that restores the current working directory to what it was before the decorated function was called? In other words, if I use the decorator on a function that does an ...
11
votes
5answers
331 views

What is the best way to do automatic attribute assignment in Python, and is it a good idea?

Instead of writing code like this every time I define a class: class Foo(object): def __init__(self, a, b, c, d, e, f, g): self.a = a self.b = b self.c = c ...
10
votes
4answers
757 views

dynamically decorating objects in c#

is it possible to easily and dynamically decorate an object? for example, lets say I have a List<PointF>. this list is actually a plot of the sine function. I'd like to go through these points ...
10
votes
2answers
2k views

How to decorate a method inside a class?

Am attempting to decorate a method inside a class but python is throwing an error on me. My class looks like this: from pageutils import formatHeader myPage(object): def __init__(self): ...
10
votes
2answers
2k views

Why does @foo.setter in Python not work for me?

So, I'm playing with decorators in python 2.6, and I'm having some trouble getting them to work. Here's by class file: class testDec: @property def x(self): print 'called getter' ...
10
votes
3answers
529 views

Preserving signatures of decorated functions

Suppose I have written a decorator that does something very generic. For example, it might convert all arguments to a specific type, perform logging, implement memoization, etc. Here is an example: ...
9
votes
1answer
89 views

Why is a line in this python function necessary? (memoized recursion)

I got the following code snippet from Peter Norvig's website; it's a decorator to enable memoization on function calls (caching prior calls to the function to change an exponential recursion into a ...
9
votes
7answers
433 views

Introspection to get decorator names on a method?

I am trying to figure out how to get the names of all decorators on a method. I can already get the method name and docstring, but cannot figure out how to get a list of decorators.
9
votes
3answers
214 views

How can I pack serveral decorators into one?

I have several decorators on each function, is there a way to pack them in to one instead? @fun1 @fun2 @fun3 def do_stuf(): pass change to: @all_funs #runs fun1 fun2 and fun3, how should ...
9
votes
1answer
697 views

python metaclasses vs class decorators

what are the main differences ? is there something i can do with one method but not with the other one ?
9
votes
2answers
2k views

Why Python decorators rather than closures?

I still haven't got my head around decorators in Python. I've already started using a lot of closures to do things like customize functions and classes in my coding. Eg. class Node : def ...
8
votes
1answer
460 views

Rails Patterns - Decorator vs Presenter

All sorts of talk lately in the Rails community about decorators, presenters. What is the essential difference between the two? If there are, what are the cues that tell me to use one or the ...
8
votes
4answers
371 views

Python decorator as a staticmethod

I'm trying to write a python class which uses a decorator function that needs information of the instance state. This is working as intended, but if I explicitly make the decorator a staticmetod, I ...
8
votes
3answers
172 views

Decorator design pattern, function bug

This is homework...I'm not asking for answers, I just have a bug I'm not sure what to do with. Thanks! The bug in question probably has nothing to do with the assignment itself, but here is the ...
8
votes
2answers
169 views

decorating decorators: try to get my head around understanding it

I'm trying to understand decorating decorators, and wanted to try out the following: Let's say I have to decorators and apply them to the function hello: def wrap(f): def wrapper(): ...
8
votes
2answers
466 views

Python Sphinx autodoc and decorated members

I am attempting to use Sphinx to document my Python class. I do so using autodoc: .. autoclass:: Bus :members: While it correctly fetches the docstrings for my methods, those that are decorated: ...
8
votes
4answers
378 views

Python decorators compared to CLOS “around” method

I'm reaching back to my CLOS (Common Lisp Object System) days for this abstract question. I'm augmenting the question to clarify: It appears to me that a Python decorator is sort of like an ...
8
votes
3answers
342 views

How much overhead do decorators add to Python function calls

I've been playing around with a timing decorator for my pylons app to provide on the fly timing info for specific functions. I've done this by creating a decorator & simply attaching it to any ...
8
votes
3answers
3k views

Preferred way of defining properties in Python: property decorator or lambda?

Which is the preferred way of defining class properties in Python and why? Is it Ok to use both in one class? @property def total(self): return self.field_1 + self.field_2 or total = ...
8
votes
5answers
2k views

Can a Python Decorator of an Instance Method Access the Class?

Hi I have something roughly like the following. Basically I need to access the class of an instance method from a decorator used upon the instance method in its definition. def decorator(view): ...
8
votes
6answers
6k views

How do I use ViewScripts on Zend_Form File Elements?

I am using this ViewScript for my standard form elements: <div class="field" id="field_<?php echo $this->element->getId(); ?>"> <?php if (0 < ...
8
votes
3answers
414 views

Why can't Python decorators be chained across definitions?

Why arn't the following two scripts equivalent? (Taken from another question: Understanding Python Decorators) def makebold(fn): def wrapped(): return "<b>" + fn() + "</b>" ...
8
votes
3answers
943 views

Python Decorator Problem with Docstrings

I have a problem using docstrings with decorators. Given the following example: def decorator(f): def _decorator(): print 'decorator active' f() return _decorator @decorator ...
8
votes
4answers
3k views

how to implement a decorator in PHP?

Suppose there is a class called "Class_A", it has a member function called "func". I want the "func" to do some extra work by wrapping Class_A in a decorator class. $worker = new Decorator(new ...
7
votes
4answers
151 views

Is AOP a type of decorator pattern?

I got asked this question in a interview. I clearly know what a decorator pattern is and how it can be used. But I was not able to think through this question in the interview. This is the actual ...
7
votes
2answers
264 views

Decorators applied to class definition with Python

Compared to decorators applied to a function, it's not easy to understand the decorators applied to a class. @foo class Bar(object): def __init__(self, x): self.x = x def spam(self): ...
7
votes
3answers
188 views

Copy call signature to decorator

If I do the following def mydecorator(f): def wrapper(*args, **kwargs): f(*args, **kwargs) wrapper.__doc__ = f.__doc__ wrapper.__name__ = f.__name__ return wrapper ...
7
votes
7answers
278 views

Design considerations for temporarily transforming a player into an animal in a role playing game

I am working on a role playing game for fun and to practice design patterns. I would like players to be able to transform themselves into different animals. For example, a Druid might be able to shape ...
7
votes
5answers
292 views

Faking method attributes in PHP?

Is it possible to use the equivalent for .NET method attributes in PHP, or in some way simulate these? Context We have an in-house URL routing class that we like a lot. The way it works today is ...
7
votes
6answers
513 views

How to strip decorators from a function in python

Let's say I have the following: def with_connection(f): def decorated(*args, **kwargs): f(get_connection(...), *args, **kwargs) return decorated @with_connection def ...

1 2 3 4 5 13