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 vstinner
Recipients pitrou, vstinner
Date 2009-03-25.00:06:58
SpamBayes Score 1.9063418e-11
Marked as misclassified No
Message-id <1237939619.69.0.0223005409131.issue4762@psf.upfronthosting.co.za>
In-reply-to
Content
In py3k, standard streams' names are now correct (since the io-c 
merge):

Python 3.1a1+ (py3k:70589M, Mar 25 2009, 01:01:13)
>>> import sys
>>> sys.stdin.name, sys.stdout.name, sys.stderr.name
('<stdin>', '<stdout>', '<stderr>')

The last problem occurs with imp.find_module(). But imp.find_module() 
also returns a "filename" argument, so I don't think that the issue 
really matters. Let's close it ;-)
History
Date User Action Args
2009-03-25 00:06:59vstinnersetrecipients: + vstinner, pitrou
2009-03-25 00:06:59vstinnersetmessageid: <1237939619.69.0.0223005409131.issue4762@psf.upfronthosting.co.za>
2009-03-25 00:06:58vstinnerlinkissue4762 messages
2009-03-25 00:06:58vstinnercreate