diff options
author | Charles-François Natali <neologix@free.fr> | 2012-02-06 18:54:48 (GMT) |
---|---|---|
committer | Charles-François Natali <neologix@free.fr> | 2012-02-06 18:54:48 (GMT) |
commit | 77940902512c85e2d09dd5bd913084dc547881ff (patch) | |
tree | 8bf5109d39f6439057c837ad66e3e6347217dd4e /Doc | |
parent | 9878b63c7c70b33ea21cd06a2c30ca1344962f02 (diff) | |
download | cpython-77940902512c85e2d09dd5bd913084dc547881ff.zip cpython-77940902512c85e2d09dd5bd913084dc547881ff.tar.gz cpython-77940902512c85e2d09dd5bd913084dc547881ff.tar.bz2 |
Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to
be consistent with other functions accepting file descriptors (fdlistdir() was
added in 3.3, so hasn't been released yet).
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/3.3.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 8601687..06f1452 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -769,7 +769,7 @@ as internal buffering of data. .. versionadded:: 3.3 -.. function:: fdlistdir(fd) +.. function:: flistdir(fd) Like :func:`listdir`, but uses a file descriptor instead and always returns strings. diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index c20c889..d3044b3 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -571,7 +571,7 @@ os * Other new functions: - * :func:`~os.fdlistdir` (:issue:`10755`) + * :func:`~os.flistdir` (:issue:`10755`) * :func:`~os.getgrouplist` (:issue:`9344`) |