Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/utils/functional.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #25611 -- Standardized descriptor signatures.Tim Graham2015-10-261-1/+1
* Removed SimpleLazyObject workaround for a Python 3 bug.Tim Graham2015-10-051-5/+1
* Removed obsolete (since Python 2.3) __safe_for_unpickling...Tim Graham2015-10-051-1/+0
* Fixed #25389 -- Fixed pickling a SimpleLazyObject wrappin...Ben Kraft2015-10-031-25/+31
* Fixed #25000 -- Fixed cast to string for lazy objects.Marten Kenbeek2015-06-231-0/+5
* Removed support for Python 3.3.Tim Graham2015-06-181-1/+1
* Removed django.utils.functional.total_ordering()Tim Graham2015-06-151-35/+1
* Fixed flake8 warnings on Python 3.Tim Graham2015-06-151-1/+1
* Removed cases of six.iter* wrapped in a list()Curtis Maloney2015-04-181-1/+1
* Fixed #23838 -- added missing `__iter__` to LazyObjectRik2015-03-081-2/+2
* Optimized allow_lazy() by not generating a new lazy wrapp...Alex Gaynor2015-02-081-1/+3
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
* Fixed #24252 -- Forced lazy __str__ to utf-8 on Python 2Claude Paroz2015-02-031-0/+4
* Removed django.utils.functional.memoize per deprecation t...Tim Graham2015-01-171-25/+0
* Fixed #23346 -- Fixed lazy() to lookup methods on the rea...Gavin Wahl2014-12-261-23/+13
* Fixed #23688 -- Updated cached_property to preserve docst...John-Scott Atlakson2014-10-201-0/+1
* Limited lines to 119 characters in django/Tim Graham2014-09-051-1/+2
* Fixed #22691 -- Added aliasing to cached_property.Curtis2014-07-011-2/+6
* Simplified implementation of collectstatic command.Baptiste Mispelon2014-03-131-1/+1
* Fixed #21840 -- Moved dunder methods from SimpleLazyObjec...Baptiste Mispelon2014-03-131-54/+62
* Fixed #21188 -- Introduced subclasses for to-be-removed-i...Claude Paroz2014-03-081-1/+2
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-1/+1
* Use `classmethod` as a decorator.xuxiang2013-11-201-2/+2
* Fixed the use of the -ise suffix, where -ize is preferedAlex Gaynor2013-11-151-1/+1
* Fix syntax error under Python 3.2.Aymeric Augustin2013-11-111-3/+3
* Fixed #21351 -- Replaced memoize with Python's lru_cache.Bouke Haarsma2013-11-111-0/+5
* Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor2013-09-101-1/+1
* Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin2013-09-021-1/+1
* Merge remote-tracking branch 'core/master' into schema-al...Andrew Godwin2013-08-191-10/+5
|\
| * Some code simplificationAlex Gaynor2013-08-181-11/+3
| * Update LazyObject method proxy declarations to simpler form.Nick Bruun2013-08-181-7/+2
| * Regression test and patch for ticket #20924.Nick Bruun2013-08-151-0/+8
* | Merge branch 'master' into schema-alterationAndrew Godwin2013-07-221-3/+2
|\|
| * Fixed #20746 -- Removed Python 2.6 specific code/docsTim Graham2013-07-141-3/+2
* | Merge remote-tracking branch 'core/master' into schema-al...Andrew Godwin2013-06-071-5/+14
|\|
| * Imported copyreg from six.movesClaude Paroz2013-05-211-5/+1
| * Fixed #20212 - __reduce__ should only be defined for Py3+.Daniel Lindsley2013-05-211-5/+18
* | Fix proxy objects to respect !=Andrew Godwin2013-05-191-0/+5
|/
* Fix != operations on lazy objects.Alex Gaynor2013-04-191-0/+1
* Fixed #19456 -- Avoid infinite recursion when tracing Laz...Aymeric Augustin2013-03-181-0/+4
* Fixed #18447 -- Made LazyObject unwrap on dict access.Aymeric Augustin2013-03-181-1/+14
* PEP8 cleanup of functional.pyPreston Holmes2013-03-071-12/+24
* Fixed #19543 -- implemented SimpleLazyObject.__repr__Preston Holmes2013-03-071-0/+9
* Fixed #19634 -- Added proper __hash__ methods.Aymeric Augustin2013-02-251-1/+2
* Fixed #19872Tomek Paczkowski2013-02-231-1/+3
* Fixed #19160 -- Made lazy plural translations usable.Aymeric Augustin2013-01-301-2/+1
* Fixed a couple of docstring typos.Ramiro Morales2012-12-151-5/+5
* Properly support pickling of LazyObjects in Python 3.3Ian Clelland2012-10-261-0/+10
* Removed obsolete __members__ definitionsClaude Paroz2012-08-211-1/+0
* [py3] Ported django.utils.functional.Aymeric Augustin2012-08-071-21/+37