.. |
2to3_fixes
|
[py3] Added fixer for python_2_unicode_compatible.
|
2012-08-12 14:44:40 +02:00 |
translation
|
Replaced some smart_xxx by force_xxx equivalent
|
2012-08-30 15:46:16 +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
|
Fixed #12397 -- allow safe_join to work with the root file system path, which means you can have your root template or file upload path at this location. You almost certainly don't want to do this, except in *very* limited sandboxed situations.
|
2012-09-07 16:49:22 -04:00 |
archive.py
|
Ensured that the archive module consistantly explicitly closed all files.
|
2012-08-15 02:53:40 -07:00 |
autoreload.py
|
[py3] Added compatibility import of thread/_thread
|
2012-08-18 10:56:56 +02:00 |
baseconv.py
|
Fix copyright holder
|
2012-07-06 15:24:07 -03:00 |
cache.py
|
Replaced many smart_bytes by force_bytes
|
2012-08-29 11:20:32 +02:00 |
checksums.py
|
[py3] Replaced basestring by six.string_types.
|
2012-07-22 09:29:54 +02:00 |
copycompat.py
|
Fixed #18042 -- Advanced deprecation warnings.
|
2012-05-03 15:27:01 +02:00 |
crypto.py
|
Replaced many smart_bytes by force_bytes
|
2012-08-29 11:20:32 +02:00 |
daemonize.py
|
Switched to octal notation (bis).
|
2012-07-20 13:42:44 +02:00 |
datastructures.py
|
remove a bunch of unnescesarry iterkeys() calls
|
2012-08-08 07:33:15 -07:00 |
dateformat.py
|
[py3] Ported django.utils.encoding.
|
2012-08-07 12:00:22 +02:00 |
dateparse.py
|
Fixed #18728 -- Made colon optional in tzinfo
|
2012-08-19 21:47:41 +02: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
|
remove a bunch of unnescesarry iterkeys() calls
|
2012-08-08 07:33:15 -07:00 |
encoding.py
|
Fixed #18902 -- Made force_bytes properly handle exception input
|
2012-09-04 09:27:28 +02:00 |
feedgenerator.py
|
[py3] Ported django.utils.feedgenerator.
|
2012-08-07 12:00:23 +02:00 |
formats.py
|
Replaced some smart_xxx by force_xxx equivalent
|
2012-08-30 15:46:16 +02:00 |
functional.py
|
Removed obsolete __members__ definitions
|
2012-08-21 11:20:22 +02:00 |
hashcompat.py
|
Fixed #18042 -- Advanced deprecation warnings.
|
2012-05-03 15:27:01 +02:00 |
html.py
|
Replaced many smart_bytes by force_bytes
|
2012-08-29 11:20:32 +02:00 |
html_parser.py
|
Fixed #18239 -- Subclassed HTMLParser only for selected Python versions
|
2012-08-16 21:03:11 +02:00 |
http.py
|
Replaced some smart_xxx by force_xxx equivalent
|
2012-08-30 15:46:16 +02:00 |
importlib.py
|
[py3] Added Python 3 compatibility for xrange.
|
2012-07-22 09:29:56 +02:00 |
ipv6.py
|
[py3] Replace filter/lambda by list comprehensions
|
2012-08-14 14:31:06 +02:00 |
itercompat.py
|
[py3] Switched to Python 3-compatible imports.
|
2012-07-22 09:29:56 +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
|
[py3] Replaced unicode/str by six.text_type/bytes.
|
2012-07-22 09:29:54 +02:00 |
regex_helper.py
|
[py3] Ported django.utils.regex_helper.
|
2012-08-07 12:00:24 +02:00 |
safestring.py
|
[py3] Ported django.utils.safestring.
|
2012-08-18 16:04:06 +02:00 |
simplejson.py
|
Fixed #18023 -- Removed bundled simplejson.
|
2012-04-29 19:58:00 +02:00 |
six.py
|
[py3k] Silence many warnings while running the tests.
|
2012-09-07 13:17:34 -04: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
|
[py3] Fixed access to dict keys/values/items.
|
2012-08-07 12:00:22 +02:00 |
text.py
|
Reordered imports
|
2012-08-23 10:24:50 +02:00 |
timesince.py
|
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
|
2012-06-07 18:08:47 +02:00 |
timezone.py
|
[py3] Replaced basestring by six.string_types.
|
2012-07-22 09:29:54 +02:00 |
tree.py
|
[py3] Replaced __nonzero__ by __bool__
|
2012-08-08 15:02:31 +02:00 |
tzinfo.py
|
Replaced some smart_xxx by force_xxx equivalent
|
2012-08-30 15:46:16 +02:00 |
version.py
|
Used git log instead of git show for last commit's timestamp
|
2012-06-08 23:04:03 +03:00 |
xmlutils.py
|
Eliminated lots of mutable default arguments (since they are bugs
|
2006-06-03 13:37:34 +00:00 |