summaryrefslogtreecommitdiff
path: root/django/core/serializers/python.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #26125 -- Fixed E731 flake warnings.userimack2016-01-251-3/+6
* Cached model field_names in Python Deserializer.Andrey Kuzmin2015-10-231-1/+5
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-121-9/+13
* Fixed #24716 -- Deprecated Field._get_val_from_obj()Thomas Stephenson2015-07-141-1/+1
* Fixed #25050 -- Allowed serialization of models with deferred fields.Grégoire ROCHER2015-07-021-1/+2
* Fixed #19820 -- Added more helpful error messages to Python deserializer.Richard Eames2015-04-091-15/+30
* Fixed #24558 -- Made dumpdata mapping ordering deterministic.Simon Charette2015-04-021-6/+5
* Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen2015-03-251-15/+15
* Fixed #24320 - Used field.value_to_string() in serialization of foreign key.Andriy Sokolovskiy2015-02-131-0/+2
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
* Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon2015-01-061-3/+3
* Fixed #17946 -- Fixed deserialization of self-referencing M2M fieldsClaude Paroz2014-12-231-7/+7
* Limited lines to 119 characters in django/Tim Graham2014-09-051-1/+3
* Removed some unnecessary exception naming; thanks claudep.Tim Graham2014-05-181-2/+2
* Fixed #21799 - Modified loaddata --ignorenonexistent to ignore models.Esau Rodriguez2014-05-181-1/+7
* Took advantage of the new get_model API. Refs #21702.Aymeric Augustin2014-01-261-2/+1
* Stopped populating the app registry as a side effect.Aymeric Augustin2013-12-301-2/+0
* Changed get_model to raise an exception on errors.Aymeric Augustin2013-12-281-3/+1
* Renamed AppCache to Apps.Aymeric Augustin2013-12-241-3/+3
* Moved apps back in the toplevel django namespace.Aymeric Augustin2013-12-221-1/+1
* Terminated AppCache._populate() with extreme prejudice.Aymeric Augustin2013-12-221-1/+1
* Moved the new app cache inside core.Aymeric Augustin2013-12-171-1/+1
* Removed the _-prefix for populate().Aymeric Augustin2013-12-171-1/+2
* Removed module-level functions for the app cache.Aymeric Augustin2013-12-171-2/+3
* More attacking E302 violatorsAlex Gaynor2013-11-021-0/+1
* Fixed #13252 -- Added ability to serialize with natural primary keys.Tai Lee2013-10-111-7/+13
* Fixed #19746 -- Allow deserialization of pk-less dataNick Sandford2013-02-121-1/+1
* Fixed #19689 -- Renamed `Model._meta.module_name` to `model_name`.Simon Charette2013-02-051-1/+1
* Fixed #9279 -- Added ignorenonexistent option to loaddataPreston Holmes2012-09-301-1/+11
* [py3] Fixed 'iterable but non string' detectionClaude Paroz2012-08-081-2/+2
* [py3] Ported django.utils.encoding.Aymeric Augustin2012-08-071-7/+7
* [py3] Fixed access to dict keys/values/items.Aymeric Augustin2012-08-071-1/+2
* Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz2012-06-071-1/+2
* Fixed #5423 -- Made dumpdata output one row at a time.Claude Paroz2012-05-261-5/+8
* Fix #17879: Corrected regression in python (inherited by yaml and json) seria...Karen Tracey2012-03-121-1/+4
* Fixed #17602 -- Stopped the XML serializer from doing unneeded queries. Thank...Jannis Leidel2012-02-041-12/+6
* Reverting r14994 (at request of SmileyChris) because of some backwards compat...Russell Keith-Magee2010-12-211-13/+7
* Fixes #13252 -- Use the natural key instead of the primary key when serializingChris Beaven2010-12-211-7/+13
* Fixed #13030 -- Corrected natural key deserialization to subclasses. Thanks t...Russell Keith-Magee2010-03-181-0/+4
* Fixed #1142 -- Added multiple database support.Russell Keith-Magee2009-12-221-3/+4
* Fixed #7052 -- Added support for natural keys in serialization.Russell Keith-Magee2009-12-141-10/+32
* Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introduc...Russell Keith-Magee2009-11-031-1/+1
* Fixed #9522 -- Modified handling of values in base serializer so that field s...Russell Keith-Magee2009-04-131-4/+11
* Fixed #8651: correctly deserialize objects with 0 for pk/fk.Jacob Kaplan-Moss2008-08-281-1/+1
* Fixed #8134 -- Corrected serialization of m2m fields with intermediate models...Russell Keith-Magee2008-08-121-2/+3
* Fixed #6110 -- Mark the python format serializer as for internal use only. T...Malcolm Tredinnick2007-12-171-1/+3
* Fixed #4714 -- Modified serializers to handle None primary keys correctly. Th...Russell Keith-Magee2007-09-151-4/+5
* Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick2007-07-041-27/+22
* Fixed a serialization problem with objects that have a foreign key on an obje...Russell Keith-Magee2007-05-281-1/+6
* Fixed #4288 -- Modified serializers to pay attention to the to_field attribut...Russell Keith-Magee2007-05-141-2/+5