Message265524
| 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? |
|