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 nedbat
Recipients nedbat
Date 2011-01-29.19:12:29
SpamBayes Score 0.00018282568
Marked as misclassified No
Message-id <1296328350.27.0.0987051728598.issue11065@psf.upfronthosting.co.za>
In-reply-to
Content
Run this shell script against 3.2, and it will fail. Against 3.1, it succeeds. I've been running tests on Ubuntu 10.10.


mkdir -p sub
cat >sub/modzip.py <<END_PY
j = 1
END_PY
zip zipmod.zip sub/modzip.py
PYTHONPATH=zipmod.zip python3 -c "import sys; print(sys.version)"


The failure I get is:

Fatal Python error: Py_Initialize: Unable to get the locale encoding
LookupError: no codec search functions registered: can't find encoding
History
Date User Action Args
2011-01-29 19:12:30nedbatsetrecipients: + nedbat
2011-01-29 19:12:30nedbatsetmessageid: <1296328350.27.0.0987051728598.issue11065@psf.upfronthosting.co.za>
2011-01-29 19:12:29nedbatlinkissue11065 messages
2011-01-29 19:12:29nedbatcreate