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
/
tests
/
utils_tests
/
test_lazyobject.py
Age
Commit message (
Expand
)
Author
2022-02-17
Refs #28358 -- Fixed infinite recursion in LazyObject.__getattribute__().
Matthias Kestenholz
2022-02-16
Fixed #28358 -- Prevented LazyObject from mimicking nonexistent attributes.
Theo Alexiou
2022-02-10
Fixed #26287 -- Added support for addition operations to SimpleLazyObject.
Theo Alexiou
2022-02-07
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Mariusz Felisiak
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2018-09-19
Fixed #29772 -- Made LazyObject proxy __lt__() and __gt__().
Javier Buzzi
2017-07-12
Refs #28389 -- Added release note and test for pickling of LazyObject when wr...
Sergey Fedoseev
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-19
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2017-01-18
Refs #23919 -- Removed most of remaining six usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed six.<various>_types usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed encoding preambles and future imports
Claude Paroz
2016-11-14
Fixed #27463 -- Fixed E741 flake8 warnings.
Ramin Farajpour Cami
2016-07-21
Made miscellaneous code cleanups
Dmitry Dygalo
2016-01-26
Fixed #26122 -- Fixed copying a LazyObject
Ben Kraft
2015-10-03
Fixed #25389 -- Fixed pickling a SimpleLazyObject wrapping a model.
Ben Kraft
2015-03-08
Fixed #23838 -- added missing `__iter__` to LazyObject
Rik
2014-11-03
Fixed #23620 -- Used more specific assertions in the Django test suite.
Berker Peksag
2014-09-29
Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.
Thomas Chaumeny
2014-03-27
Fixed a deprecation warning on Python 3.
Tim Graham
2014-03-13
Fixed #21840 -- Moved dunder methods from SimpleLazyObject to LazyObject.
Baptiste Mispelon