1
0
mirror of https://github.com/django/django.git synced 2025-01-13 03:47:26 +00:00
django/django/utils
Malcolm Tredinnick e20f09c2d0 Fixed #10006 -- Avoid inadvertently using third-party "json" module.
In r9707 we added a preference to use Python's standard json module (Python 2.6
and beyond). However, there is also a third-party module called json that was
being picked up by accident if it was installed. It isn't API compatible, so
bad things happened. This change avoids that problem.

Patch from markmuetz.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9910 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-02-27 05:14:11 +00:00
..
simplejson Fixed #10006 -- Avoid inadvertently using third-party "json" module. 2009-02-27 05:14:11 +00:00
translation Fixed #8654: added ugettext_lazy to django.utils.translation.__all__. 2008-08-28 20:20:40 +00:00
__init__.py
_decimal.py
_os.py Fixed #9579 -- Properly handle apps running with (and specifically, loading templates from) a current working directory path that contains non-ASCII characters. Thanks for the report to gonzalodelgado and for advice on how to fix it to Daniel Pope. 2008-11-13 19:03:42 +00:00
_threading_local.py
autoreload.py Made auto-reloading for the dev server a little more friendly in the Jython 2008-08-08 17:54:35 +00:00
cache.py Fixed typo in comment. 2008-08-15 16:38:41 +00:00
checksums.py
daemonize.py Fixed #6994 -- For fastcgi, set a more sensible default umask. 2008-06-30 11:22:41 +00:00
datastructures.py Fixed #7496 -- It's now possible to pickle SortedDicts with pickle protocol 2 2008-08-25 04:00:15 +00:00
dateformat.py Fixed #7847 -- Removed a whole bunch of unused imports from throughout the codebase. Thanks, julien 2008-07-22 03:24:09 +00:00
dates.py
datetime_safe.py Fixed #1443 -- Django's various bits now support dates before 1900. Thanks to SmileyChris, Chris Green, Fredrik Lundh and others for patches and design help 2008-07-18 03:47:27 +00:00
decorators.py Fixed #6679 -- In decorator_from_middleware, don't unpack arguments when calling a middleware's 2008-03-17 17:47:34 +00:00
encoding.py Fixed #5903 -- DecimalField.get_default() now correctly returns a Decimal object when the model instance was not retrieved from the database. Thanks Justin Driscoll and pigletto. 2009-02-11 20:13:17 +00:00
feedgenerator.py Fixed #8219 -- More robust date to string conversion in syndication feeds. 2008-08-15 22:13:50 +00:00
functional.py Put back [8120] along with a small tweak. Fixed #6217. 2008-07-28 00:45:04 +00:00
hashcompat.py Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashlib module when available. Patch from Karen Tracey. 2008-08-02 05:56:57 +00:00
html.py Fixed #6965 -- Sped up the urlize and urlizetrunc filters. A nice patch from Andrew Badr. 2008-07-19 18:05:22 +00:00
http.py Fixed #7723 - implemented a secure password reset form that uses a token and prompts user for new password. 2008-07-31 20:47:53 +00:00
itercompat.py Fixed #8209: ModelForms now validate unique constraints. Alex Gaynor did much of this work, and Brian Rosner helped as well. 2008-09-01 19:08:08 +00:00
regex_helper.py Changed the reverse() call for creating URLs to convert a "." in the reg-exp 2008-09-03 17:53:45 +00:00
safestring.py Fixed #6071 -- Fixed another infinite recursion problem in SafeString and 2007-12-02 20:17:10 +00:00
stopwords.py
synch.py
termcolors.py
text.py Fixed #8710: removed a few stray tabs. Thanks, gkelly. 2008-08-30 19:25:40 +00:00
thread_support.py Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (or 2008-07-21 07:57:10 +00:00
timesince.py Fixed #8637: fixed timeuntil and date values. 2008-08-28 16:31:50 +00:00
tree.py Fixed #8283 -- Fixed an edge case when adding things to the "where" tree and 2008-08-16 20:40:00 +00:00
tzinfo.py Fixed #8142 -- Removed an unnecessary parameter in a superclass init call. 2008-08-08 18:33:02 +00:00
version.py
xmlutils.py