summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2010-12-02 04:11:46 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2010-12-02 04:11:46 (GMT)
commitb2ddf7979d228f2e61a4b9d174759ba39737930e (patch)
tree2df8dbbc25d0d3043b8c4843aa9dde91636373da /Misc
parentd2bb830edc7fc9e54b6ccd8c75a23ed8fee455e0 (diff)
downloadcpython-b2ddf7979d228f2e61a4b9d174759ba39737930e.zip
cpython-b2ddf7979d228f2e61a4b9d174759ba39737930e.tar.gz
cpython-b2ddf7979d228f2e61a4b9d174759ba39737930e.tar.bz2
Issue #9573: os.fork now works when triggered as a side effect of import (the wisdom of actually relying on this remains questionable!)
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 adec2df..b2c8258 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,9 @@ Core and Builtins
Library
-------
+- Issue #9573: os.fork() now works correctly when triggered as a side effect
+ of a module import
+
- Issue #10464: netrc now correctly handles lines with embedded '#' characters.
- Added itertools.accumulate().