Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/deprecation
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #25466 -- Added backwards compatibility aliases ↵Tim Graham2015-09-301-1/+16
| | | | | | for LoaderOrigin and StringOrigin. Thanks Simon Charette for the DeprecationInstanceCheck class.
* Refs #21977 -- Removed SimpleTestCase.urls per ↵Tim Graham2015-09-241-27/+0
| | | | deprecation timeline.
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-1/+1
| | | | | Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
* Removed deprecated Chinese language codes; refs #18149.Tim Graham2015-01-171-20/+2
|
* Removed request.REQUEST per deprecation timeline; refs ↵Tim Graham2015-01-171-21/+1
| | | | #18659.
* Removed django.utils.functional.memoize per deprecation ↵Tim Graham2015-01-171-15/+0
| | | | | | timeline. refs #21351.
* Applied ignore_warnings to Django testsClaude Paroz2014-12-301-0/+1
|
* Refs #23947 -- Worked around a bug in Python that ↵Diego Guimarães2014-12-061-0/+2
| | | | prevents deprecation warnings from appearing in tests.
* Fixed #23923 -- Promoted Django's deprecation warnings ↵Tim Graham2014-11-291-0/+1
| | | | to errors in runtests.py
* Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi2014-04-061-0/+26
|
* Avoided leaking warning filters.Aymeric Augustin2014-03-091-4/+2
|
* Fixed #21188 -- Introduced subclasses for ↵Claude Paroz2014-03-081-0/+1
| | | | | | | to-be-removed-in-django-XX warnings Thanks Anssi Kääriäinen for the idea and Simon Charette for the review.
* Removed superfluous models.py files.Aymeric Augustin2013-12-171-0/+0
| | | | | | | Added comments in the three empty models.py files that are still needed. Adjusted the test runner to add applications corresponding to test labels to INSTALLED_APPS even when they don't have a models module.
* Fixed #21351 -- Replaced memoize with Python's lru_cache.Bouke Haarsma2013-11-111-0/+16
| | | | | | | | | | Replaced the custom, untested memoize with a similar decorator from Python's 3.2 stdlib. Although some minor performance degradation (see ticket), it is expected that in the long run lru_cache will outperform memoize once it is implemented in C. Thanks to EvilDMP for the report and Baptiste Mispelon for the idea of replacing memoize with lru_cache.
* Fixed #18149 -- Changed language codes for ChineseBouke Haarsma2013-11-041-2/+21
| | | | | | | Language codes for Chinese are zh_Hans (Simplified) and zh_Hant (Traditional). Added support for browsers that still send the deprecated language codes. Thanks to Olli Wang for the report.
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-1/+0
|
* Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol2013-10-231-0/+11
|
* Removed unused local variables in tests.Tim Graham2013-10-191-1/+1
|
* Fixed #18659 -- Deprecated request.REQUEST and MergeDictBouke Haarsma2013-10-171-1/+21
| | | | Thanks Aymeric Augustin for the suggestion.
* Import test case classes from their public API module.Ramiro Morales2013-08-211-1/+1
|
* Advanced deprecation warnings for Django 1.7.Aymeric Augustin2013-06-291-1/+1
|
* Fixed #15363 -- Renamed and normalized to `get_queryset` ↵Loic Bistuer2013-03-083-0/+158
the methods that return a QuerySet.