django1/django/utils
Tim Graham 062ce508b0 [1.8.x] Fixed flake8 warnings on Python 3.
Backport of 47fcbe506c from master
2015-06-15 13:01:41 -04:00
..
translation [1.8.x] Fixed #24569 -- Made some translation functions accept None value 2015-04-04 10:58:54 +02:00
__init__.py Imported Django from private SVN repository (created from r. 8825) 2005-07-13 01:25:57 +00:00
_os.py [1.8.x] Refs #24324 -- Fixed UnicodeDecodeError in template_backends tests 2015-02-17 18:45:07 -05:00
archive.py Fixed #22681 -- Made TarArchive recognize leading directories properly. 2014-06-03 12:00:33 -04:00
autoreload.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
baseconv.py More attacking E302 violators 2013-11-02 13:12:09 -07:00
cache.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
checksums.py Fixed #23613 -- Deprecated django.utils.checksums 2014-10-10 09:22:20 -04:00
crypto.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
daemonize.py Fixed #20815 -- Don't enforce unbuffered I/O on Python 3. 2014-06-07 22:33:56 +02:00
datastructures.py Fixed #23968 -- Replaced list comprehension with generators and dict comprehension 2014-12-08 07:58:23 -05:00
dateformat.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
dateparse.py [1.8.x] Fixed #24897 -- Allowed using choices longer than 1 day with DurationField 2015-06-02 12:42:31 -04:00
dates.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
datetime_safe.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
deconstruct.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
decorators.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
deprecation.py Corrected deprecation warnings. 2014-03-27 17:48:12 -04:00
dictconfig.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
duration.py Fixed #2443 -- Added DurationField. 2014-12-20 18:28:29 +00:00
encoding.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
feedgenerator.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
formats.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
functional.py [1.8.x] Fixed flake8 warnings on Python 3. 2015-06-15 13:01:41 -04:00
html.py [1.8.x] Fixed flake8 warnings on Python 3. 2015-06-15 13:01:41 -04:00
html_parser.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
http.py [1.8.x] Made is_safe_url() reject URLs that start with control characters. 2015-03-18 19:23:21 -04:00
importlib.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
ipv6.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
itercompat.py Fixed #20746 -- Removed Python 2.6 specific code/docs 2013-07-14 13:02:55 -04:00
jslex.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
log.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
lorem_ipsum.py Limited lines to 119 characters in django/ 2014-09-05 09:22:16 -04:00
lru_cache.py Fixed typo in lru_cache.py; refs #21351. 2013-11-12 18:45:35 +01:00
module_loading.py [1.8.x] Fixed ImportError message in utils.module_loading.import_string() 2015-06-06 11:55:56 -04:00
numberformat.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
regex_helper.py [1.8.x] Fixed typos in code comments. 2015-01-20 12:18:29 -05:00
safestring.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
six.py Updated six to 1.9.0. 2015-01-02 12:35:41 -05:00
synch.py [1.8.x] Removed threading fallback imports. 2015-02-01 18:45:01 -05:00
termcolors.py Fixed #23968 -- Replaced list comprehension with generators and dict comprehension 2014-12-08 07:58:23 -05:00
text.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
timesince.py [1.8.x] Moved definition of chunks out of timesince function. 2015-03-04 22:31:27 +01:00
timezone.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
tree.py Fixed #23968 -- Replaced list comprehension with generators and dict comprehension 2014-12-08 07:58:23 -05:00
tzinfo.py [1.8.x] Sorted imports with isort; refs #23860. 2015-02-09 14:24:06 -05:00
unittest.py Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warnings 2014-03-08 09:57:40 +01:00
version.py Fixed #23866 -- Harmonized refs to Django documentation from code 2014-12-25 13:53:13 +01:00
xmlutils.py More attacking E302 violators 2013-11-02 13:12:09 -07:00