On 10/05/11 00:36, cool-RR wrote: > Is it true that Pypy can't import a `.pyc` file? yes, by default pyc files which don't have the corresponding py file are ignored. You can change the behavior by translating pypy by yourself and using the --objspace-lonepycfiles option: $ ./translate.py -Ojit targetpypystandalone --objspace-lonepycfiles ciao, Anto