summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-04-23 15:21:13 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-04-23 15:21:13 (GMT)
commit877509aef43034fec002eeafc9982e4b6c1c0b3d (patch)
tree8395ac5c7b4bae90fb8e7d19c6a3c428ed8c2b5a /Misc/NEWS
parent00bdbe1d97f5d72f46f955ae886f4a0dbf32f7cb (diff)
downloadcpython-877509aef43034fec002eeafc9982e4b6c1c0b3d.zip
cpython-877509aef43034fec002eeafc9982e4b6c1c0b3d.tar.gz
cpython-877509aef43034fec002eeafc9982e4b6c1c0b3d.tar.bz2
Issue #11382: Trivial system calls, such as dup() or pipe(), needn't
release the GIL. Patch by Charles-François Natali.
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 be70b8a..37b48d1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,9 @@ Core and Builtins
Library
-------
+- Issue #11382: Trivial system calls, such as dup() or pipe(), needn't
+ release the GIL. Patch by Charles-François Natali.
+
- Issue #11223: Add threading._info() function providing informations about
the thread implementation.