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 martin.panter
Recipients Arfrever, brett.cannon, eric.snow, lemburg, martin.panter, ncoghlan
Date 2016-05-14.12:18:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1463228300.02.0.214671221749.issue16027@psf.upfronthosting.co.za>
In-reply-to
Content
FWIW Python 3.3 is almost a distant memory, but I think it works properly:

$ wine c:/Python33/python.exe -m __hello__
Hello world!
$ wine c:/Python33/python.exe -m __phello__.spam
Hello world!
Hello world!

On Python 2, it does fail. Is this what the original problem was?

$ python2.7 -m __hello__
/sbin/python2.7: No code object available for __hello__
[Exit 1]
$ python2.7 -c 'import __hello__'
Hello world...

As I see it, this only needs to be fixed in Python 2. Or is it not applicable to 2?
History
Date User Action Args
2016-05-14 12:18:20martin.pantersetrecipients: + martin.panter, lemburg, brett.cannon, ncoghlan, Arfrever, eric.snow
2016-05-14 12:18:20martin.pantersetmessageid: <1463228300.02.0.214671221749.issue16027@psf.upfronthosting.co.za>
2016-05-14 12:18:20martin.panterlinkissue16027 messages
2016-05-14 12:18:19martin.pantercreate