Issue 3357: A bug in the doc string of the sys module (original) (raw)
Issue3357
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) * ![]() |
Date: 2008-07-15 00:31 |
Thanks. Fixed in r64956. |
History | |||
---|---|---|---|
Date | User | Action | Args |
2022-04-11 14:56:36 | admin | set | github: 47607 |
2008-07-15 00:31:13 | benjamin.peterson | set | status: open -> closednosy: + benjamin.petersonresolution: fixedmessages: + |
2008-07-14 23:37:50 | cheDu | create |