summaryrefslogtreecommitdiff
path: root/django/utils/functional.py
AgeCommit message (Expand)Author
2012-12-15Fixed a couple of docstring typos.Ramiro Morales
2012-10-26Properly support pickling of LazyObjects in Python 3.3Ian Clelland
2012-08-21Removed obsolete __members__ definitionsClaude Paroz
2012-08-07[py3] Ported django.utils.functional.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-08-04Fixed a mistake in function documentation 'django.utils.functional.partition'Tim Graham
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-05-18Got rid of old __cmp__methods replaced by rich comparison.Claude Paroz
2012-05-07Fixed total_ordering for Python < 2.7.2Anssi Kääriäinen
2012-05-07Made model fields comparable to other objectsSimon Charette
2012-01-08Try to save memory and time when using lazy objects by refering to their func...Alex Gaynor
2011-12-15Fixed #16563 - Error pickling request.userLuke Plant
2011-10-21move an mport out of a functionAlex Gaynor
2011-09-30Fixed #14270 - related manager classes should be cachedLuke Plant
2011-09-09Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...Alex Gaynor
2011-06-01Allow SimpleLazyObjects to return None without constantly being reevaluated, ...Alex Gaynor
2011-06-01Fixed #9200 -- Added new form wizard to formtools based on class based views....Jannis Leidel
2011-05-31Cleaned up how ``request.user`` is set, this is a follow up to [16297]. Thank...Alex Gaynor
2011-05-05Fixed #15811 - lazy() doesn't take into account methods defined in parentsLuke Plant
2011-05-01Replaced old-style with new-style decorator syntax.Jannis Leidel
2011-04-02Fixed grammar error in utils/functional.py from [15940]Adrian Holovaty
2011-03-31Fixed #15724 -- Added update_wrapper import to utils.functional to be a bit m...Jannis Leidel
2011-03-28Remove a license that no long applies to any code, and add a comment for the ...Alex Gaynor
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-04-19Fixed #13370 -- Corrected the handling of pickling for lazy() proxy objects. ...Russell Keith-Magee
2010-03-27Fixed #12769, #12924 -- Corrected the pickling of curried and lazy objects, w...Russell Keith-Magee
2010-01-05Fixed #12506 - 'lazy' fails when there are multiple expected classes with the...Luke Plant
2009-12-17Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Than...Jacob Kaplan-Moss
2009-12-12FIxed #10130: you may now delete attributes on `settings`. Thanks, jcassee.Jacob Kaplan-Moss
2009-10-20Fixed #12060 - equality tests between User and SimpleLazyObject-wrapped User ...Luke Plant
2009-10-19Fixed non-standard introspection support in LazyObject.Luke Plant
2009-10-19Fixed #12049 - LazyObject-wrapped User breaks queries in template tagsLuke Plant
2009-10-15Fixed a regression on Python 2.6 caused by r11623Luke Plant
2009-03-02Factor out some common pieces of django.conf.LazySettings.Malcolm Tredinnick
2008-07-28Put back [8120] along with a small tweak. Fixed #6217.Malcolm Tredinnick
2008-07-28Back out [8120] for a bit. Refs #6217. It's having unintended side-effects (a...Malcolm Tredinnick
2008-07-27Fixed #6217 -- Reduced the memory used by each ugettext_lazy() call.Malcolm Tredinnick
2008-02-25Fixed #5701 -- Fixed decorators to take the name, attributes, and docstring o...Gary Wilson Jr
2007-10-21Fixed #5560 -- Improved the way we create __str__ and __unicode__ methods inMalcolm Tredinnick
2007-09-15Made a small optimization to __deepcopy__ in [6276].Malcolm Tredinnick
2007-09-15Fixed #5487 -- Added deepcopying ability to lazy() objects, along with a test...Malcolm Tredinnick
2007-07-08Fixed reverse URL lookup using functions when the original URL pattern was aMalcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-23Fixed #4566 -- Added caching speed-ups to reverse URL matching. Based on aMalcolm Tredinnick
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2006-09-07Renamed 'func' argument in django.utils.functional.curry to reduce possibilit...Adrian Holovaty
2006-09-07Optimized django.utils.functional.curry. Thanks for the patch, Martin GlueckAdrian Holovaty
2006-05-02MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty
2005-11-21fixes #753 - ValidationError and CriticalValidationError now accept both stri...Georg Bauer