Tagged Questions

0
votes
1answer
36 views

Strange decorator result on related object comparison

On views that allow updating/deleting objects, I need a decorator that verifies that the object to be edited belongs to a group(model "loja). Both defined in the url: /[slug model …
4
votes
2answers
180 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: @LO …
0
votes
2answers
75 views

dynamically adding functions to a Python module

Our framework requires wrapping certain functions in some ugly boilerplate code: def prefix_myname_suffix(obj): def actual(): print 'hello world' obj.register(actu …
0
votes
3answers
101 views

django class view with decorator and sessions

I'm trying to convert some of my django views over from function based views to class based views and I've run into a small problem. My OO is kind of weak and I think the problem …
3
votes
3answers
71 views

Django options for making variables widely available

Every time I open a page I want to get the currently active project id. This will be done by chacking the subdomain and verifying the currently logged in user can view it. Once …
1
vote
4answers
229 views

C function decorators (wrappers) at compile time

I'm trying to change the behaviour of some functions in C with help of the preprocessor; and also add optional parameters that can be set on or off... The basic pattern for the op …
0
votes
3answers
111 views

Creating a decorator in a class with access to the (current) class itself

Currently, I'm doing it in this fashion: class Spam(object): decorated = None @classmethod def decorate(cls, funct): if cls.decorated is None: cl …
1
vote
1answer
72 views

Decorators that are properties of decorated objects?

I want to create a decorator that allows me to refer back to the decorated object and grab another decorator from it, the same way you can use setter/deleter on properties: @prope …
0
votes
1answer
167 views

Python - Get original function arguments in decorator

I am trying to write a "login_required" decorator for the views in a WSGI+Werkzeug application. In order to do this, I need to get at the user's session, which is accessible via t …
1
vote
1answer
164 views

Zend_Form decorators ordering (Errors before form element issue)

Hello, I have the following Zend_Form code to apply to form element decorators: $decorators = array( 'ViewHelper', 'Description', array('break' => 'HtmlT …
3
votes
2answers
473 views

Python convert args to kwargs

I am writing a decorator that needs to call other functions prior to call of the function that it is decorating. The decorated function may have positional arguments, but the func …
2
votes
2answers
446 views

The Decorator Design Pattern

I am just starting to learn design patterns and I have two questions related to the Decorator... I was wondering why the decorator pattern suggests that the decorator implement al …