index
:
django.git
fix-31295
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
core
/
serializers
/
pyyaml.py
Age
Commit message (
Expand
)
Author
2024-11-12
Refs #21286 -- Fixed YAML serialization of TimeField primary key.
Adam Zapletal
2024-09-17
Fixed #29522 -- Refactored the Deserializer functions to classes.
Amir Karimi
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2020-07-30
Bumped minimum isort version to 5.1.0.
David Smith
2020-04-28
Fixed #29249 -- Made JSON and YAML serializers use Unicode by default.
Hasan Ramezani
2019-02-06
Fixed #30159 -- Removed unneeded use of OrderedDict.
Nick Pope
2018-09-26
Refs #29784 -- Switched to https:// links where available.
Jon Dufresne
2017-02-23
Refs #23919 -- Used yield from.
Vytis Banaitis
2017-02-21
Refs #27656 -- Updated django.core docstring verbs according to PEP 257.
Anton Samarchyan
2017-02-09
Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().
Tim Graham
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-22
Refs #23919 -- Replaced six.reraise by raise
Claude Paroz
2017-01-18
Refs #23919 -- Removed six.<various>_types usage
Claude Paroz
2016-11-14
Fixed E305 flake8 warnings.
Ramin Farajpour Cami
2015-04-02
Fixed #24558 -- Made dumpdata mapping ordering deterministic.
Simon Charette
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2013-11-02
More attacking E302 violators
Alex Gaynor
2013-03-19
Fixed #18003 -- Preserved tracebacks when re-raising errors.
konarkmodi
2013-01-05
Fixed #12914 -- Use yaml faster C implementation when available
Claude Paroz
2012-08-29
Replaced many smart_bytes by force_bytes
Claude Paroz
2012-08-07
[py3] Ported django.utils.encoding.
Aymeric Augustin
2012-07-22
[py3] Replaced basestring by six.string_types.
Aymeric Augustin
2012-06-28
Fixed #15197 -- Fixed yaml serialization into HttpResponse
Claude Paroz
2012-06-15
Favored text (StringIO) over binary content for deserialization
Claude Paroz
2012-06-10
Fixed #18457 -- Fixed encoding error in yaml deserializer
Claude Paroz
2012-05-05
Replaced cStringIO.StringIO by io.BytesIO.
Claude Paroz
2012-04-29
Fixed #18013 -- Use the new 'as' syntax for exceptions.
Claude Paroz
2012-02-10
Fixed the exception handling when deserializing via generators on Python 2.5 ...
Jannis Leidel
2012-02-09
Fixed #11970 -- Wrapped the exception happening during deserialization in Des...
Jannis Leidel
2011-11-01
Used yaml.safe_load instead of yaml.load, because safety should be the default.
Aymeric Augustin
2011-01-08
Fixed #14888 -- Removing duplicated code in serialisers. Thanks to eric.fortin.
Andrew Godwin
2009-12-22
Fixed #1142 -- Added multiple database support.
Russell Keith-Magee
2009-12-14
Fixed #7052 -- Added support for natural keys in serialization.
Russell Keith-Magee
2009-02-12
Fixed #10240 -- Restored YAML serialization with Decimal objects that broke w...
Brian Rosner
2008-07-30
Fixed #7990 -- Modified serializers to use StringIO, rather than cStringIO, d...
Russell Keith-Magee
2008-02-19
Fixed #6481 -- Fixed a bunch of import problems (and some whitespace cleanups).
Malcolm Tredinnick
2007-12-17
Fixed #6110 -- Mark the python format serializer as for internal use only. T...
Malcolm Tredinnick
2007-12-04
Fixed a bug introduced in [6891]: the "safe" YAML serializer can't handle tim...
Jacob Kaplan-Moss
2007-12-04
Fixed #5268: the YAML serializer now uses yaml.safe_dump() instead the plain ...
Jacob Kaplan-Moss
2007-07-04
Merged Unicode branch into trunk (r4952:5608). This should be fully
Malcolm Tredinnick
2007-06-01
Fixed #3466 -- Fixed problem with specifyin a 'fields' argument to a JSON ser...
Russell Keith-Magee
2007-03-15
Fixed typo in docstring of YAML serializer.
Russell Keith-Magee
2007-03-12
Added a YAML serializer built on PyYAML (http://pyyaml.org/). This serializer...
Jacob Kaplan-Moss