diff options
author | Georg Brandl <georg@python.org> | 2006-07-30 11:07:23 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-07-30 11:07:23 (GMT) |
commit | e34ac7ce7a3ed56cf412a425637441f31dd0ad52 (patch) | |
tree | bde9c233a6c85ac0896f9db3aaa0949d8939c12b /Doc | |
parent | ad6911bd6294d6d7e63772c3ede36dfbbd79220b (diff) | |
download | cpython-e34ac7ce7a3ed56cf412a425637441f31dd0ad52.zip cpython-e34ac7ce7a3ed56cf412a425637441f31dd0ad52.tar.gz cpython-e34ac7ce7a3ed56cf412a425637441f31dd0ad52.tar.bz2 |
Bug #1002398: The documentation for os.path.sameopenfile now correctly
refers to file descriptors, not file objects.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libposixpath.tex | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/lib/libposixpath.tex b/Doc/lib/libposixpath.tex index b9cdea1..0b2da66 100644 --- a/Doc/lib/libposixpath.tex +++ b/Doc/lib/libposixpath.tex @@ -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} |