summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2017-05-23 02:46:40 (GMT)
committerGitHub <noreply@github.com>2017-05-23 02:46:40 (GMT)
commite377416c10eb0bf055b0728cdcdc4488fdfd3b5f (patch)
tree26dac18a3dfca605d0d09a61603b70a7d635e3b5 /Misc/NEWS
parent93fc20b73eea3da0b6305aaee951e5dd22d5c408 (diff)
downloadcpython-e377416c10eb0bf055b0728cdcdc4488fdfd3b5f.zip
cpython-e377416c10eb0bf055b0728cdcdc4488fdfd3b5f.tar.gz
cpython-e377416c10eb0bf055b0728cdcdc4488fdfd3b5f.tar.bz2
bpo-29102: Add a unique ID to PyInterpreterState. (#1639)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 34f1c15..5b41dcf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -53,6 +53,9 @@ Core and Builtins
- bpo-24821: Fixed the slowing down to 25 times in the searching of some
unlucky Unicode characters.
+- bpo-29102: Add a unique ID to PyInterpreterState. This makes it easier
+ to identify each subinterpreter.
+
- bpo-29894: The deprecation warning is emitted if __complex__ returns an
instance of a strict subclass of complex. In a future versions of Python
this can be an error.