summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Expand)Author
2012-05-26Fixed #5423 -- Made dumpdata output one row at a time.Claude Paroz
2012-05-25Specified when open should use binary mode.Claude Paroz
2012-05-24Stopped converting match dict keys to bytestrings when resolving URLs.Claude Paroz
2012-05-20Imported reduce from functools for forward compatibility.Claude Paroz
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-05-19Fixed #18325 -- Wrapped self.stdout/stderr in OutputWrapper classClaude Paroz
2012-05-18Cleaned up WSGIRequestHandler get_environ to be Python 3 compatibleClaude Paroz
2012-05-15Fixed #18019 -- Use threaded runserver only when database supports it.Claude Paroz
2012-05-10Replaced foo.next() by next(foo).Claude Paroz
2012-05-05Used io.BytesIO also for ContentFile.Claude Paroz
2012-05-05Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz
2012-05-05Fixed the syntax used for the Python repl examples in docs and docstrings.Alex Gaynor
2012-05-05Made more extensive usage of context managers with open.Claude Paroz
2012-05-03Fixed #18042 -- Advanced deprecation warnings.Aymeric Augustin
2012-05-01Skip model validation when models are known good.Anssi Kääriäinen
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-29Fixed #18220 -- Removed the CACHE_BACKEND setting, as per official deprecatio...Claude Paroz
2012-04-29Fixed #18023 -- Removed bundled simplejson.Aymeric Augustin
2012-04-29Made table_names() output sorted.Anssi Kääriäinen
2012-04-27Updated compilemessages and makemessages management commands to change SVN->G...Adrian Holovaty
2012-04-27Fixed #15076 -- Quoted ForeignKey target class names in inspectdb when class ...Claude Paroz
2012-04-26Removed direct print statements from django management commands.Claude Paroz
2012-04-22Fixed #5893 -- Added a flag to FilePathField to allow listing folders, in add...Alex Gaynor
2012-04-08Fixed #18035 -- Removed deprecated AdminMediaHandler, as per official depreca...Claude Paroz
2012-04-05Fixed #15644 -- Improved Django File wrapper to support more file-like object...Claude Paroz
2012-03-31Removed some more useless code related to the verify_exists removal.Claude Paroz
2012-03-31Fixed #18029 -- Removed leftover mod_python files forgotten in r17835.Claude Paroz
2012-03-31Removed deprecated URLField.verify_exists.Aymeric Augustin
2012-03-31Removed deprecated copy of PermWrapper and PermLookupDict from django.core.co...Aymeric Augustin
2012-03-31Removed the deprecated reset and sqlreset management commands.Aymeric Augustin
2012-03-31Fixed #18029 -- Removed mod_python as of deprecation process. Thanks Aymeric ...Claude Paroz
2012-03-31Fixed #17965 -- Definitely dropped support for Python 2.5. Thanks jonash for ...Claude Paroz
2012-03-30Removed some Python < 2.6 compatibility code. Refs #17965.Aymeric Augustin
2012-03-30Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks...Claude Paroz
2012-03-29Fixed #17811 -- Added connection parameter in call to EmailMessage from send_...Claude Paroz
2012-03-29Fixed #17947 -- Fixed language restore after management command even when exc...Claude Paroz
2012-03-21Fixed #17920 -- Actually pass the full path of a newly created project or app...Jannis Leidel
2012-03-12Fix #17879: Corrected regression in python (inherited by yaml and json) seria...Karen Tracey
2012-03-10Fixed #17820 -- Fixed more occurrences of redundant handling of management co...Ramiro Morales
2012-03-03Fixed #17717 (again) -- Used the new API for concrete models added in r17573....Jannis Leidel
2012-03-03Fixed #17717 -- Fixed serialization of proxy models. Thanks, Anssi Kääriäi...Jannis Leidel
2012-03-02Added missing newline to makemessages output. Thanks Florian Apolloner for re...Carl Meyer
2012-03-02Fixed #17734 -- Made sure to only redirect translated URLs if they can actual...Jannis Leidel
2012-02-23Cleanup to use get_random_string consistently.Paul McMillan
2012-02-17Documentation (and some small source code) edits from [17432] - [17537]Adrian Holovaty
2012-02-17Fixed missing periods in django-admin help for startproject from [17432]Adrian Holovaty
2012-02-11Fixed #17676 -- Fixed introspection of column names that start with digit(s).Ramiro Morales
2012-02-10Fixed the exception handling when deserializing via generators on Python 2.5 ...Jannis Leidel
2012-02-09Fixed #17358 -- Updated logging calls to use official syntax for arguments in...Jannis Leidel