summaryrefslogtreecommitdiff
path: root/django/utils/functional.py
AgeCommit message (Expand)Author
2013-09-03[1.6.x] Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin
2013-05-21Imported copyreg from six.movesClaude Paroz
2013-05-21Fixed #20212 - __reduce__ should only be defined for Py3+.Daniel Lindsley
2013-04-19Fix != operations on lazy objects.Alex Gaynor
2013-03-18Fixed #19456 -- Avoid infinite recursion when tracing LazyObject.__init__.Aymeric Augustin
2013-03-18Fixed #18447 -- Made LazyObject unwrap on dict access.Aymeric Augustin
2013-03-06PEP8 cleanup of functional.pyPreston Holmes
2013-03-06Fixed #19543 -- implemented SimpleLazyObject.__repr__Preston Holmes
2013-02-25Fixed #19634 -- Added proper __hash__ methods.Aymeric Augustin
2013-02-23Fixed #19872Tomek Paczkowski
2013-01-30Fixed #19160 -- Made lazy plural translations usable.Aymeric Augustin
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