summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-08-11 19:20:42 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-08-11 19:20:42 (GMT)
commitd4efbf90d24405f89df07f6e575e3572a0516e85 (patch)
treec8a97f4ce4384e82e598563f27bf7ff317862706 /Misc
parentf0f45142d52436d26ce8ed888c73496949caae90 (diff)
downloadcpython-d4efbf90d24405f89df07f6e575e3572a0516e85.zip
cpython-d4efbf90d24405f89df07f6e575e3572a0516e85.tar.gz
cpython-d4efbf90d24405f89df07f6e575e3572a0516e85.tar.bz2
use pep 383 decoding for mknod and mkfifo #9570
Patch by David Watson.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 24f9684..418f8dd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,8 @@ Core and Builtins
Extensions
----------
+- Issue #9570: Use PEP 383 decoding in os.mknod and os.mkfifo.
+
- Issue #6915: Under Windows, os.listdir() didn't release the Global
Interpreter Lock around all system calls. Original patch by Ryan Kelly.