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

extending class static members and inheritance

2013-04-02 Thread Fabian PyDEV
Hi All, I have a question. Let says I have the following two classes: class Base(object): __mylist__ = [value1, value2] def somemethod(self): pass class Derived(Base): __mylist__ = [value3, value4] def anothermethod(self): pass