Opened 18 years ago

Closed 18 years ago

#2388 closed defect (fixed)

[patch]login_required decorator in contrib.auth doesn't preserve doc string or dict of decorated function.

Reported by: derekgr@… Owned by: Adrian Holovaty
Component: Contrib apps Version: dev
Severity: minor Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Functions decorated with django.contrib.auth's login_required decorator don't inherit the name, doc, or dict attributes of the functions they decorate.

The login_required decorator returns an inner function, so I would expect that it would simply set the attributes accordingly. In fact, a patch is applied which does exactly that.

In this way examining methods in the shell makes it more transparent that a decorator is applied and allows developer documentation strings to percolate past the decoration.

Attachments (1)

decorators.py.diff (574 bytes ) - added by derekgr@… 18 years ago.
Patch to decorators.py.

Download all attachments as: .zip

Change History (3)

by derekgr@…, 18 years ago

Attachment: decorators.py.diff added

Patch to decorators.py.

comment:1 by derekgr@…, 18 years ago

Summary: login_required decorator in contrib.auth doesn't preserve doc string or dict of decorated function.[patch]login_required decorator in contrib.auth doesn't preserve doc string or dict of decorated function.

comment:2 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [3461]) Fixed #2388 -- login_required decorator now preserves docstring and name of decorated function. Thanks, derekgr@…

Note: See TracTickets for help on using tickets.
Back to Top