Sergey Fedoseev
|
27ca5ce19f
|
Used datetime.timezone.utc instead of pytz.utc for better performance.
|
2018-03-20 15:24:16 -04:00 |
Raymond Hettinger
|
aba9763b51
|
Refs #28814 -- Imported from collections.abc to fix Python 3.7 deprecation warnings.
https://bugs.python.org/issue25988
|
2018-02-05 11:42:47 -05:00 |
Nick Pope
|
d13a9e44de
|
Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.
|
2017-12-11 07:08:45 -05:00 |
Sergey Fedoseev
|
183fb7b2b9
|
Fixed #28870 -- Added support for functools.partialmethod serialization in migrations.
|
2017-12-06 14:49:37 -05:00 |
Sergey Fedoseev
|
a2ec1e6b2d
|
Used BaseSimpleSerializer for serializing str and bytes in migrations.
Follow up to c716fe8782 .
|
2017-11-13 14:12:46 -05:00 |
Jon Dufresne
|
f599747fc8
|
Fixed #28152 -- Made migrations serialize sets as set literals rather than set().
|
2017-05-18 09:33:40 -04:00 |
Claude Paroz
|
301de774c2
|
Refs #27795 -- Replaced many force_text() with str()
Thanks Tim Graham for the review.
|
2017-04-27 09:10:02 +02:00 |
Tim Graham
|
1c466994d9
|
Refs #23919 -- Removed misc Python 2/3 references.
|
2017-01-25 13:59:25 -05:00 |
chillaranand
|
d6eaf7c018
|
Refs #23919 -- Replaced super(ClassName, self) with super().
|
2017-01-25 12:23:46 -05:00 |
Tim Graham
|
d170c63351
|
Refs #23919 -- Removed misc references to Python 2.
|
2017-01-21 20:02:00 -05:00 |
Mariusz Felisiak
|
c22212220a
|
Refs #23919 -- Removed re.U and re.UNICODE (default on Python 3).
|
2017-01-21 14:28:16 -05:00 |
Tim Graham
|
9ee47ce7b4
|
Refs #23919 -- Removed enum ImportError handling for Python 2.
|
2017-01-19 13:55:20 -05:00 |
Simon Charette
|
cecc079168
|
Refs #23919 -- Stopped inheriting from object to define new style classes.
|
2017-01-19 08:39:46 +01:00 |
Claude Paroz
|
2b281cc35e
|
Refs #23919 -- Removed most of remaining six usage
Thanks Tim Graham for the review.
|
2017-01-18 21:33:28 +01:00 |
Claude Paroz
|
7b2f2e74ad
|
Refs #23919 -- Removed six.<various>_types usage
Thanks Tim Graham and Simon Charette for the reviews.
|
2017-01-18 20:18:46 +01:00 |
Claude Paroz
|
c716fe8782
|
Refs #23919 -- Removed six.PY2/PY3 usage
Thanks Tim Graham for the review.
|
2017-01-18 16:21:28 +01:00 |
Claude Paroz
|
d7b9aaa366
|
Refs #23919 -- Removed encoding preambles and future imports
|
2017-01-18 09:55:19 +01:00 |
Maxime Lorant
|
cb3fb34b86
|
Fixed #27378 -- Added support for serialization of uuid.UUID in migrations.
Thanks Yuriy Korobko for the initial patch and Tobias McNulty for review.
|
2016-11-06 13:53:00 +01:00 |
Tim Graham
|
96ee486ea4
|
Fixed #27081 -- Allowed migrations to serialize methods on pypy.
|
2016-08-30 21:47:34 -04:00 |
Markus Holtermann
|
3b383085fb
|
Fixed #26555 -- Gave deconstructible objects a higher priority during serialization
|
2016-05-04 22:39:19 +02:00 |
Yoong Kang Lim
|
4b1529e2cb
|
Fixed #26151 -- Refactored MigrationWriter.serialize()
Thanks Markus Holtermann for review.
|
2016-02-25 14:01:06 -05:00 |