diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-07-18 07:10:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-18 07:10:49 (GMT) |
commit | 5d4cb54800966947db2e86f65fb109c5067076be (patch) | |
tree | 26156a09f429ef95392d06ee8ea99bcdf30dea38 /Misc/NEWS.d | |
parent | feabae961707b00008c15a31352e458f4e8b3a6c (diff) | |
download | cpython-5d4cb54800966947db2e86f65fb109c5067076be.zip cpython-5d4cb54800966947db2e86f65fb109c5067076be.tar.gz cpython-5d4cb54800966947db2e86f65fb109c5067076be.tar.bz2 |
bpo-34141: Optimized pickling simple non-recursive values. (GH-8318)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-07-18-08-36-58.bpo-34141.Fo7Q5r.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-07-18-08-36-58.bpo-34141.Fo7Q5r.rst b/Misc/NEWS.d/next/Core and Builtins/2018-07-18-08-36-58.bpo-34141.Fo7Q5r.rst new file mode 100644 index 0000000..328b109 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2018-07-18-08-36-58.bpo-34141.Fo7Q5r.rst @@ -0,0 +1 @@ +Optimized pickling atomic types (None, bool, int, float, bytes, str). |