summaryrefslogtreecommitdiff
path: root/django/core/serializers/python.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-2/+1
* Fixed #33937 -- Optimized serialization of related m2m fields without natural...Mark Evans2022-09-051-1/+7
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-19/+47
* Fixed #29078 -- Made serializers respect prefetch_related() for m2m fields.Claude Paroz2020-05-251-3/+5
* Fixed #30159 -- Removed unneeded use of OrderedDict.Nick Pope2019-02-061-3/+2
* Fixed #26291 -- Allowed loaddata to handle forward references in natural_key ...Peter Inglesby2018-07-131-5/+13
* Extracted deserialize fk/m2m functions from Deserializer.Peter Inglesby2018-03-201-40/+9
* Refs #27795 -- Removed force_text() usage in serialization frameworkClaude Paroz2017-06-051-14/+12
* Refs #23919 -- Removed force_text() in Python deserializer needed only on Pyt...Claude Paroz2017-04-271-6/+0
* Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan2017-02-211-4/+2
* Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis2017-02-011-8/+6
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-2/+1
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-2/+2
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Fixed #26207 -- Replaced dynamic classes with non-data descriptors for deferr...Anssi Kääriäinen2016-04-291-2/+1
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-2/+3
* 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