This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: os.access now returns bool but docstring is not updated
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, sanxiyn
Priority: normal Keywords:

Created on 2007-01-27 14:42 by sanxiyn, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg31103 - (view) Author: Seo Sanghyeon (sanxiyn) Date: 2007-01-27 14:42
$ pydoc os.access
os.access = access(...)
    access(path, mode) -> 1 if granted, 0 otherwise

os.access now returns True/False, so this docstring is incorrect.
msg31104 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-01-27 19:39
Thanks for the report, fixed in rev. 53579, 53580 (2.5)
History
Date User Action Args
2022-04-11 14:56:22adminsetgithub: 44511
2007-01-27 14:42:12sanxiyncreate