Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#15342 closed (fixed)

Example of decorated class-based generic view is missing *args

Reported by: Jannis Vajen Owned by: nobody
Component: Documentation Version: 1.3-beta
Severity: Keywords: class-based generic views, documentation
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In http://docs.djangoproject.com/en/dev/topics/class-based-views/#decorating-the-class


@method_decorator(login_required)
    def dispatch(self, *args, **kwargs):
        return super(ProtectedView, self).dispatch(**kwargs)

has to be


@method_decorator(login_required)
    def dispatch(self, *args, **kwargs):
        return super(ProtectedView, self).dispatch(*args, **kwargs)

Attachments (1)

15342.patch (583 bytes ) - added by Jannis Vajen 13 years ago.
Adds *args to decorated dispatch() example

Download all attachments as: .zip

Change History (3)

by Jannis Vajen, 13 years ago

Attachment: 15342.patch added

Adds *args to decorated dispatch() example

comment:1 by Gabriel Hurley, 13 years ago

Resolution: fixed
Status: newclosed

In [15564]:

Fixed #15342 -- Passed *args through to the parent class' dispatch method in the CBV example. Thanks to jnns for the report and patch.

comment:2 by Jacob, 13 years ago

milestone: 1.3

Milestone 1.3 deleted

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