summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-03-31 21:34:42 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-03-31 21:34:42 (GMT)
commitd906ea62c8839a55efc313b4161ce124b6f656f0 (patch)
treec5f108c70ed41d000bfb5c701a18ff578dc0c8d4 /Misc
parenta08e8dedc2c857d19153cc6bf3839e101e577c9c (diff)
downloadcpython-d906ea62c8839a55efc313b4161ce124b6f656f0.zip
cpython-d906ea62c8839a55efc313b4161ce124b6f656f0.tar.gz
cpython-d906ea62c8839a55efc313b4161ce124b6f656f0.tar.bz2
fix Thread.ident when it is the main thread or a dummy thread #5632
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 6d6d292..6bded6b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -199,6 +199,9 @@ Core and Builtins
Library
-------
+- Issue #5632: Thread.ident was None for the main thread and threads not created
+ with the threading module.
+
- Issue #5400: Added patch for multiprocessing on netbsd compilation/support
- Issue #5387: Fixed mmap.move crash by integer overflow.