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 ncoghlan
Recipients belopolsky, georg.brandl, ncoghlan
Date 2008-02-22.11:01:14
SpamBayes Score 0.14449322
Marked as misclassified No
Message-id <1203678076.55.0.434745833262.issue1877@psf.upfronthosting.co.za>
In-reply-to
Content
I've checked in friendlier error messages as r60955

Examples (paths somewhat redacted):

$ ./python bob
./python: can't open file 'bob': [Errno 2] No such file or directory
$ ./python .
/devel/python/python: can't find '__main__.py' in '.'
$ ./python Lib
/devel/python/python: can't find '__main__.py' in 'Lib'
$ ./python -m bob
/devel/python/python: No module named bob
$ ./python -m sys
/devel/python/python: No code object available for sys
$ ./python -m __main__
/devel/python/python: No code object available for __main__
History
Date User Action Args
2008-02-22 11:01:16ncoghlansetspambayes_score: 0.144493 -> 0.14449322
recipients: + ncoghlan, georg.brandl, belopolsky
2008-02-22 11:01:16ncoghlansetspambayes_score: 0.144493 -> 0.144493
messageid: <1203678076.55.0.434745833262.issue1877@psf.upfronthosting.co.za>
2008-02-22 11:01:14ncoghlanlinkissue1877 messages
2008-02-22 11:01:14ncoghlancreate