Author: jezdez Date: 2011-03-31 01:42:51 -0700 (Thu, 31 Mar 2011) New Revision: 15965
Modified: django/trunk/django/utils/functional.py Log: Fixed #15724 -- Added update_wrapper import to utils.functional to be a bit more forgiving for 3rd party apps using that import. Modified: django/trunk/django/utils/functional.py =================================================================== --- django/trunk/django/utils/functional.py 2011-03-31 08:35:34 UTC (rev 15964) +++ django/trunk/django/utils/functional.py 2011-03-31 08:42:51 UTC (rev 15965) @@ -1,4 +1,4 @@ -from functools import wraps +from functools import wraps, update_wrapper # You can't trivially replace this `functools.partial` because this binds to -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
