]> granicus.if.org Git - python/commitdiff
Bug #1002398: The documentation for os.path.sameopenfile now correctly
authorGeorg Brandl <georg@python.org>
Sun, 30 Jul 2006 11:07:23 +0000 (11:07 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 30 Jul 2006 11:07:23 +0000 (11:07 +0000)
refers to file descriptors, not file objects.

Doc/lib/libposixpath.tex
Misc/NEWS

index b9cdea1c58a2909fa644011b9db0f262040b6400..0b2da66a00aea9e0e40d4c49dcd024e80d931e65 100644 (file)
@@ -193,9 +193,8 @@ Availability:  Macintosh, \UNIX.
 \end{funcdesc}
 
 \begin{funcdesc}{sameopenfile}{fp1, fp2}
-Return \code{True} if the file objects \var{fp1} and \var{fp2} refer to the
-same file.  The two file objects may represent different file
-descriptors.
+Return \code{True} if the file descriptors \var{fp1} and \var{fp2} refer
+to the same file.
 Availability:  Macintosh, \UNIX.
 \end{funcdesc}
 
index 76b76defdd2f546059fdcd9ba7e70f0378fdbe94..ca5f5c8d9f07aec07e8b5b27f5a3d08c86184e8a 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -61,6 +61,9 @@ Core and builtins
 Library
 -------
 
+- Bug #1002398: The documentation for os.path.sameopenfile now correctly
+  refers to file descriptors, not file objects.
+
 - Rename of the xml package to xmlcore, and the import hackery done to
   make it appear at both names, has been removed.  Bug #1511497,
   #1513611, and probably others.