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.

Author jchl
Recipients
Date 2007-04-13.19:53:14
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
pydoc.help (aliased to the builtin help) uses the values of sys.stdout and sys.stdin that were in use when the pydoc module was imported.  This means that if sys.stdout and/or sys.stdin are later modified, subsequent calls to pydoc.help (or help) use the wrong stdout and stdin.

Instead, help should use the current values of sys.stdout and sys.stdin each time it is called.

Reported against Python 2.4.4.
History
Date User Action Args
2007-08-23 14:53:06adminlinkissue1700304 messages
2007-08-23 14:53:06admincreate