summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2012-05-24 18:44:07 (GMT)
committerPetri Lehtinen <petri@digip.org>2012-05-24 18:46:36 (GMT)
commit1a01ebc41cbbfc127865f82656879a58c2560543 (patch)
treedd1057c66230629dec11d19965c4c90c9a3a12f4 /Misc
parent2fc5a5080923f243a78b13cca0fd09f8db26eff6 (diff)
downloadcpython-1a01ebc41cbbfc127865f82656879a58c2560543.zip
cpython-1a01ebc41cbbfc127865f82656879a58c2560543.tar.gz
cpython-1a01ebc41cbbfc127865f82656879a58c2560543.tar.bz2
#14863: Update the documentation of os.fdopen()
There's no bufsize argument anymore, and os.fdopen() is only a very thin wrapper around open() anymore. Change the documentation to reflect that.
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 d9b8b5c..efec480 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -67,6 +67,9 @@ Core and Builtins
Library
-------
+- Issue #14863: Update the documentation of os.fdopen() to reflect the
+ fact that it's only a thin wrapper around open() anymore.
+
- Issue #14036: Add an additional check to validate that port in urlparse does
not go in illegal range and returns None.