summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2019-05-30 11:08:24 (GMT)
committerPetr Viktorin <pviktori@redhat.com>2019-05-30 11:08:24 (GMT)
commit249b7d59d8038f9017fc95dc28a3ce3494aaf832 (patch)
treec7df4d0c071aa6dfda7086c87a6c5ecc176e1bc7 /Misc/NEWS.d
parentc145f3bfbe80d498d40848450d4d33c14e2cf782 (diff)
downloadcpython-249b7d59d8038f9017fc95dc28a3ce3494aaf832.zip
cpython-249b7d59d8038f9017fc95dc28a3ce3494aaf832.tar.gz
cpython-249b7d59d8038f9017fc95dc28a3ce3494aaf832.tar.bz2
bpo-20602: Do not clear sys.flags and sys.float_info during shutdown (GH-8096)
There is no need to clear these immutable objects during shutdown.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-07-04-16-57-59.bpo-20602.sDLElw.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-07-04-16-57-59.bpo-20602.sDLElw.rst b/Misc/NEWS.d/next/Core and Builtins/2018-07-04-16-57-59.bpo-20602.sDLElw.rst
new file mode 100644
index 0000000..ab37a02
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-07-04-16-57-59.bpo-20602.sDLElw.rst
@@ -0,0 +1,2 @@
+Do not clear :data:`sys.flags` and :data:`sys.float_info` during shutdown.
+Patch by Zackery Spytz.