summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Expand)Author
2012-08-15[py3] Fixed more encoding issues in cache testsClaude Paroz
2012-08-15[py3] Fixed slug regexClaude Paroz
2012-08-15Fixed #18770 -- memcached cache backend expects byte strings as keysClaude Paroz
2012-08-15[py3] Removed excessive usage of smart_bytesClaude Paroz
2012-08-15Fixed the erorr handling code for missing management commands.Alex Gaynor
2012-08-15Sent got_request_exception signal before handle_uncaught_exceptionClaude Paroz
2012-08-15Make sure to explicitly close opened files.Alex Gaynor
2012-08-14[py3] Avoided the deprecated base64 interface.Aymeric Augustin
2012-08-14Don't swallow AttributeError in core.urlresolvers.get_callable.Florian Apolloner
2012-08-14[py3] Fixed serializers testsClaude Paroz
2012-08-14[py3] Fixed file.read().decode(), used codecs.open() insteadAnssi Kääriäinen
2012-08-14[py3] Replace filter/lambda by list comprehensionsAymeric Augustin
2012-08-13Removed binary flag to open files for writing text contentClaude Paroz
2012-08-13[py3] Fixed encoding issues in cache key generationClaude Paroz
2012-08-13[py3] Made csrf context processor return UnicodeClaude Paroz
2012-08-12[py3] Encoded value before feeding it to hashlib.md5Claude Paroz
2012-08-12[py3] Made __repr__ return str with Python 3Claude Paroz
2012-08-12[py3] Refactored __unicode__ to __str__.Aymeric Augustin
2012-08-12[py3] Replaced some __str__ methods by __unicode__Aymeric Augustin
2012-08-12[py3] Removed redundant __str__ methods.Aymeric Augustin
2012-08-11[py3] Fixed reraising of exceptionsClaude Paroz
2012-08-11[py3] Re-decoded string after idna encodingClaude Paroz
2012-08-11[py3] Fixed JSON deserializationClaude Paroz
2012-08-10[py3] Made signing infrastructure pass tests with Python 3Claude Paroz
2012-08-09[py3] Fixed mail tests with Python 3Claude Paroz
2012-08-09[py3] Renamed `next` to `__next__` in iterators.Aymeric Augustin
2012-08-08[py3] Fixed compilemessages testsClaude Paroz
2012-08-08[py3] Replaced raw_input by inputClaude Paroz
2012-08-08[py3] Fixed 'iterable but non string' detectionClaude Paroz
2012-08-08remove a bunch of unnescesarry iterkeys() callsAlex Gaynor
2012-08-08[py3] Replaced __nonzero__ by __bool__Claude Paroz
2012-08-07[py3] Applied minor fixes so the test suite startsAymeric Augustin
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-08-03Replaced some byte strings by str() callsClaude Paroz
2012-07-30Fixed a security issue in image uploading. Disclosure and release forthcoming.Florian Apolloner
2012-07-25Fixed #18634 -- Don't escape variables in the context for startproject/startapp.Marc Tamlyn
2012-07-24Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables.Ramiro Morales
2012-07-22[py3] Switched to Python 3-compatible imports.Aymeric Augustin
2012-07-22[py3] Updated urllib/urllib2/urlparse imports.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-07-22[py3] Fixed remaining Python 3 syntax errors.Aymeric Augustin
2012-07-22[py3] Used six.reraise wherever necessary.Aymeric Augustin
2012-07-21Fixed an `except` statement to be Python3-compatible. Thanks to charettes for...Julien Phalip
2012-07-21Removed u prefix on a unicode string.Aymeric Augustin
2012-07-21Fixed #6170 -- Ensured that a useful exception is raised when a regex is inva...Julien Phalip
2012-07-21Fixed #4680 -- Improved initial_sql parsingClaude Paroz
2012-07-18Fixed #18479 -- Stopped makemessages raising error on gettext warningsClaude Paroz
2012-07-18BaseCache now has a no-op close method as per ticket #18582Mike Grouchy