django1/django/utils
Claude Paroz eb286aa22f Delayed encoding of password and salt in password checking.
Applied the rule that string encoding should happen as late as
possible. This is also a preparation for Python 3 compatibility.
2012-06-06 10:53:16 +02:00
..
translation Replaced cStringIO.StringIO by io.BytesIO. 2012-05-05 21:41:44 +02:00
unittest Replaced print statement by print function (forward compatibility syntax). 2012-04-30 20:45:03 +02:00
__init__.py Imported Django from private SVN repository (created from r. 8825) 2005-07-13 01:25:57 +00:00
_os.py Fix a typo in a comment. 2012-04-30 10:15:36 -04:00
archive.py Fixed typo in utils/archive.py docstring 2012-05-11 13:51:19 -05:00
autoreload.py Fixed #10725 -- When the child process spawned by the autoreloader gets killed by a signal, passed the signal to the parent, in order to make debugging easier. 2011-12-30 14:12:31 +00:00
baseconv.py Switch to using explicit new-style division behavior, rather than relying on teh classic behavior. 2011-09-09 21:45:58 +00:00
cache.py Removed unneeded smart_str in cache utils. 2012-05-28 21:13:09 +02:00
checksums.py Fixed #5475 -- Added the Luhn check algorithm to django.utils.checksums so that 2007-10-20 13:40:20 +00:00
copycompat.py Fixed #18042 -- Advanced deprecation warnings. 2012-05-03 15:27:01 +02:00
crypto.py Delayed encoding of password and salt in password checking. 2012-06-06 10:53:16 +02:00
daemonize.py Fixed #18013 -- Use the new 'as' syntax for exceptions. 2012-04-29 20:57:15 +02:00
datastructures.py Fixed SortedDict.__copy__() 2012-04-30 17:19:55 +03:00
dateformat.py Replaced print statement by print function (forward compatibility syntax). 2012-04-30 20:45:03 +02:00
dateparse.py Negligible spacing cleanup in utils/dateparse.py 2011-12-17 02:31:34 +00:00
dates.py Fixed #9988 (again) -- Updated list of Associated Press months names to use a translation context. Thanks, Claude Paroz. 2011-01-21 22:25:50 +00:00
datetime_safe.py Fixed #12524 -- Clarified handling of pre-1000AD dates in datetime_safe (and thus, the serializers). Patch includes moving the datetime_safe tests into the utils regressiontests module. Thanks to gsf for the report and initial patch. 2010-02-13 14:02:32 +00:00
decorators.py Fixed #18013 -- Use the new 'as' syntax for exceptions. 2012-04-29 20:57:15 +02:00
dictconfig.py Fixed #18013 -- Use the new 'as' syntax for exceptions. 2012-04-29 20:57:15 +02:00
encoding.py Replaced types.NoneType occurrences 2012-05-23 12:20:03 +02:00
feedgenerator.py Replaced cStringIO.StringIO by io.BytesIO. 2012-05-05 21:41:44 +02:00
formats.py Fixed 16938 -- Ensured that the active locale's formats take precedence over the default settings even if they would be interpreted as False in a conditional test (e.g. 0 or empty string). Thanks to pikerr for the report and initial patch. 2011-10-20 12:14:06 +00:00
functional.py Got rid of old __cmp__methods replaced by rich comparison. 2012-05-18 14:52:24 +02:00
hashcompat.py Fixed #18042 -- Advanced deprecation warnings. 2012-05-03 15:27:01 +02:00
html.py Marked bytestrings with b prefix. Refs #18269 2012-05-19 17:43:34 +02:00
html_parser.py Fixed #17730 - Renamed django.utils.htmlparser to django.utils.html_parser to avoid shadowing stdlib HTMLParser in rare case-sensitivity situations. Thanks un33k for the report and gldnspud for the patch. 2012-03-01 16:09:01 +00:00
http.py Removed some Python < 2.6 compatibility code. Refs #17965. 2012-03-30 09:20:04 +00:00
importlib.py Fixed #8193: all dynamic imports in Django are now done correctly. I know this because Brett Cannon borrowed the time machine and brought Python 2.7's '`importlib` back for inclusion in Django. Thanks for the patch-from-the-future, Brett! 2009-03-18 16:55:59 +00:00
ipv6.py Fixed #811 -- Added support for IPv6 to forms and model fields. Many thanks to Erik Romijn. 2011-06-11 13:48:24 +00:00
itercompat.py Fixed #18042 -- Advanced deprecation warnings. 2012-05-03 15:27:01 +02:00
jslex.py Fixed #16971 - Made the parsing of javascript files by 'makemessages' much faster. Thanks Antti Haapala for the implementation and Ned Batchelder for the patch. 2011-10-04 20:11:41 +00:00
log.py Fixed AdminEmailHandler to format the subject message correctly when arguments are passed. 2012-02-12 12:19:02 +00:00
module_loading.py Fixed #15525 -- Custom template tags loading breaks whenever templatetags is a python file 2011-08-28 02:37:16 +00:00
numberformat.py Fixed #17414 -- Prevented numberformat from trying to group digits when the number of digits per group is zero. 2011-12-24 11:01:57 +00:00
regex_helper.py Replaced foo.next() by next(foo). 2012-05-10 20:15:49 +02:00
safestring.py Fixed #6071 -- Fixed another infinite recursion problem in SafeString and 2007-12-02 20:17:10 +00:00
simplejson.py Fixed #18023 -- Removed bundled simplejson. 2012-04-29 19:58:00 +02:00
synch.py Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks jonash for the patch. 2012-03-30 08:02:08 +00:00
termcolors.py Replaced print statement by print function (forward compatibility syntax). 2012-04-30 20:45:03 +02:00
text.py Replaced foo.next() by next(foo). 2012-05-10 20:15:49 +02:00
timesince.py Fixed #17937 -- Avoided an error in the timeuntil filter when it receives a date object. Thanks Dmitry Guyvoronsky for the report. 2012-03-22 07:29:39 +00:00
timezone.py Simplified timezones tests with settings_changed. 2012-04-29 16:03:46 +02:00
tree.py Removed a bunch more Python 2.4 workarounds now that we don't support that version. Refs #15702 -- thanks to jonash for the patch. 2011-03-28 02:11:19 +00:00
tzinfo.py Added support for time zones. Thanks Luke Plant for the review. Fixed #2626. 2011-11-18 13:01:06 +00:00
version.py Moved version code out of __init__.py. 2012-04-29 13:44:32 -05:00
xmlutils.py Eliminated lots of mutable default arguments (since they are bugs 2006-06-03 13:37:34 +00:00