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: A bug in the __doc__ string of the sys module
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: benjamin.peterson, cheDu, georg.brandl
Priority: normal Keywords:

Created on 2008-07-14 23:37 by cheDu, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg69668 - (view) Author: Chester (cheDu) Date: 2008-07-14 23:37
This relates to Python 3.x.  Do this please:
import sys; print(sys.__doc__)

Please fix the following line of text in that __doc__ file of the sys
module:
stdin -- standard input file object; used by raw_input() and input()

This line of text should just be
stdin -- standard input file object; used by input()
because raw_input() does not exist anymore in Python 3.x.
msg69670 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-07-15 00:31
Thanks. Fixed in r64956.
History
Date User Action Args
2022-04-11 14:56:36adminsetgithub: 47607
2008-07-15 00:31:13benjamin.petersonsetstatus: open -> closed
nosy: + benjamin.peterson
resolution: fixed
messages: + msg69670
2008-07-14 23:37:50cheDucreate