diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-23 15:21:13 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-23 15:21:13 (GMT) |
commit | 877509aef43034fec002eeafc9982e4b6c1c0b3d (patch) | |
tree | 8395ac5c7b4bae90fb8e7d19c6a3c428ed8c2b5a /Misc/NEWS | |
parent | 00bdbe1d97f5d72f46f955ae886f4a0dbf32f7cb (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |