2

I have to use some legacy .pyc modules (with no source) but I'm also forced to use python in optimized mode (python -O): so, when trying to import those modules, I get an import error (as python looks for .py or .pyo files).

Is there a way to make it use pyc modules as well? Or to convert .pyc into .pyo?

4

2 回答 2

3

One way to "convert" them is simply renaming them. Of course they won't be optimised, but at least you can use them.

于 2011-02-11T15:52:14.183 回答
2

You can use DePython to convert your .pyc files into .py files, and then you will be able to import them.

于 2011-02-11T17:18:07.977 回答