Bug #1002398: The documentation for os.path.sameopenfile now correctly

refers to file descriptors, not file objects.
This commit is contained in:
Georg Brandl 2006-07-30 11:07:23 +00:00
parent ad6911bd62
commit e34ac7ce7a
2 changed files with 5 additions and 3 deletions

View 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}

View File

@ -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.