Re: Different cache filename

2013-04-20 Thread Dave Angel

On 04/20/2013 01:37 AM, Fabian PyDEV wrote:

Hi,

when load a module mymodule.py with importlib.machinery.SourceFileLoader a 
bytecode file is created as mymodule.cpython-33.pyc.

If I load a module mymodule.ext.py the same way the same bytecode file is 
created as mymodule.cpython-33.pyc.

Is there any way I could tell python to generate the bycode file as 
mymodule.ext.cpython-33.pyc?

Regards,
Fabian



Rename the source file to a legal one, such as:
 mymodule_ext.py

and you won't have the problem.  Period is not a valid character within 
a Python identifier.


--
DaveA
--
http://mail.python.org/mailman/listinfo/python-list


Different cache filename

2013-04-19 Thread Fabian PyDEV
Hi,

when load a module mymodule.py with importlib.machinery.SourceFileLoader a 
bytecode file is created as mymodule.cpython-33.pyc.

If I load a module mymodule.ext.py the same way the same bytecode file is 
created as mymodule.cpython-33.pyc.

Is there any way I could tell python to generate the bycode file as 
mymodule.ext.cpython-33.pyc?

Regards,
Fabian

-- 
http://mail.python.org/mailman/listinfo/python-list