summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-04-08 06:55:07 (GMT)
committerGitHub <noreply@github.com>2017-04-08 06:55:07 (GMT)
commitb785396ab451b0c9d6ae9ee5a9e56c810209a6cb (patch)
treee84a9440891b8a488be7ef8046fc949a7962837c /Misc
parentb879fe82e7e5c3f7673c9a7fa4aad42bd05445d8 (diff)
downloadcpython-b785396ab451b0c9d6ae9ee5a9e56c810209a6cb.zip
cpython-b785396ab451b0c9d6ae9ee5a9e56c810209a6cb.tar.gz
cpython-b785396ab451b0c9d6ae9ee5a9e56c810209a6cb.tar.bz2
bpo-29998: Pickling and copying ImportError now preserves name and path (#1010)
attributes.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3caa1eb..910488a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -307,6 +307,9 @@ Extension Modules
Library
-------
+- bpo-29998: Pickling and copying ImportError now preserves name and path
+ attributes.
+
- bpo-29962: Add math.remainder operation, implementing remainder
as specified in IEEE 754.