summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-08-01 00:06:49 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-08-01 00:06:49 (GMT)
commitbdbddf8a82efd0e67f4006af91ce65bec2bf0a60 (patch)
treeb57b0cb69a03af535aba7a0039bf659622725651 /Misc
parente19cadb427b6910930b50584bd9066ab5b198300 (diff)
downloadcpython-bdbddf8a82efd0e67f4006af91ce65bec2bf0a60.zip
cpython-bdbddf8a82efd0e67f4006af91ce65bec2bf0a60.tar.gz
cpython-bdbddf8a82efd0e67f4006af91ce65bec2bf0a60.tar.bz2
#2491: os.fdopen() is now almost an alias to the builtin open(), and accepts the same parameters.
It just checks that the first argument is a file descriptor.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5f1d905..d19984a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,10 @@ Core and Builtins
Library
-------
+- Issue #2491: os.fdopen is now almost an alias for the built-in open(), and
+ accepts the same parameters. It just checks that its first argument is an
+ integer.
+
- Issue #3394: zipfile.writestr sets external attributes when passed a
file name rather than a ZipInfo instance, so files are extracted with
mode 0600 rather than 000 under Unix.