index
:
django.git
fix-31295
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
utils
/
decorators.py
Age
Commit message (
Expand
)
Author
2020-03-18
Fixed #31224 -- Added support for asynchronous views and middleware.
Andrew Godwin
2020-02-18
Refs #26601 -- Deprecated passing None as get_response arg to middleware clas...
Claude Paroz
2019-10-21
Fixed #30876 -- Moved classproperty() decorator to the django.utils.functional.
André Ericson
2019-02-05
Refs #27753 -- Removed django.utils.decorators.ContextDecorator alias.
Tim Graham
2019-02-05
Refs #27753 -- Removed django.utils.decorators.available_attrs().
Tim Graham
2018-09-26
Refs #29784 -- Switched to https:// links where available.
Jon Dufresne
2018-06-27
Refs #29253 -- Fixed method_decorator() crash if decorator sets a new attribute.
Chris Jerdonek
2018-04-16
Fixed #29253 -- Made method_decorator(list) copy attributes.
Chris Jerdonek
2017-02-11
Refs #27656 -- Updated django.utils docstring verbs according to PEP 257.
Anton Samarchyan
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-21
Refs #23919 -- Removed django.utils.decorators.available_attrs() usage.
Tim Graham
2017-01-19
Refs #23919 -- Removed usage of django.utils.decorators.ContextDecorator.
Chillar Anand
2017-01-19
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2017-01-18
Refs #23919 -- Removed six.PY2/PY3 usage
Claude Paroz
2016-01-25
Fixed #26125 -- Fixed E731 flake warnings.
userimack
2015-10-26
Fixed #25611 -- Standardized descriptor signatures.
Tim Graham
2015-09-18
Fixed #25269 -- Allowed method_decorator() to accept a list/tuple of decorators.
fabrizio ettore messina
2015-08-01
Fixed #25146 -- Allowed method_decorator() to decorate classes.
Rigel Di Scala
2015-06-12
Fixed #24965 -- Made LiveServerTestCase.live_server_url accessible from class
Moritz Sichert
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2014-11-24
Fixed typo in django/utils/decorators.py comment.
Tom V
2014-08-28
Factorize some code using ContextDecorator.
Thomas Chaumeny
2014-08-15
Fixed #23287 -- Updated error message for classonlymethod decorator.
Tim Graham
2014-02-09
Fixed #21247 -- Made method_decorator play nicely with descriptors
Marc Tamlyn
2014-01-10
Fixed #21513 -- Added method_decorator support for argumented decorator
dpwrussell
2013-10-23
Fixed #21298 -- Fixed E301 pep8 warnings
Alasdair Nicol
2013-03-12
Restricted a workaround for a bug in Python to the affected versions.
Aymeric Augustin
2012-04-29
Fixed #18013 -- Use the new 'as' syntax for exceptions.
Claude Paroz
2011-05-24
Fixed #16004 - csrf_protect does not send cookie if view returns TemplateResp...
Luke Plant
2011-05-01
Replaced old-style with new-style decorator syntax.
Jannis Leidel
2011-03-28
Removed a bunch more Python 2.4 workarounds now that we don't support that ve...
Adrian Holovaty
2010-11-20
Fixed #14512 -- Added documentation on how to apply decorators to class-based...
Russell Keith-Magee
2010-10-21
Fixed a bug with method_decorator not preserving the attributes of the wrappe...
Luke Plant
2010-05-13
Corrected 'name' of functions wrapped with method_decorator
Luke Plant
2010-05-04
Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....
Russell Keith-Magee
2010-03-12
Fixed #13093 -- Updated some decorators and the decorator_from_middleware fun...
Russell Keith-Magee
2010-02-09
Fixed #12804 - regression with decorating admin views.
Luke Plant
2009-10-15
Licence block for code added in r11586
Luke Plant
2009-10-01
Removed some unused code and improved docstring on auto_adapt_to_methods
Luke Plant
2009-09-22
Fixed typo in docstring for decorator_from_middleware_with_args.
Luke Plant
2009-09-21
Fixed #6371 - several decorators don't work with bound methods.
Luke Plant
2008-03-17
Fixed #6679 -- In `decorator_from_middleware`, don't unpack arguments when ca...
Gary Wilson Jr
2008-02-25
Fixed #5701 -- Fixed decorators to take the name, attributes, and docstring o...
Gary Wilson Jr
2007-07-07
Corrected misleading comment from [5619]. Not sure what I was smoking at the
Malcolm Tredinnick
2007-07-05
Fixed #1015 -- Fixed decorator_from_middleware to return a real decorator even
Malcolm Tredinnick
2005-11-27
Fixed #878 -- URLconf regex captures no longer have to be named groups. Old U...
Adrian Holovaty
2005-11-04
Fixed bug in django.utils.decorators.decorator_from_middleware -- it wasn't r...
Adrian Holovaty
2005-10-15
Fixed #616 -- Added a process_exception() hook to middleware framework. Thank...
Adrian Holovaty
2005-10-10
Fixed #600 -- decorator_from_middleware now handles process_view. Thanks, Hugo
Adrian Holovaty
2005-10-08
Added django.utils.decorators, from Hugo's #580 patch. Refs #580.
Adrian Holovaty