I have have a python file that imports a few frequently changed python files. I have had trouble with the imported files not recompiling when I change them. How do I stop them compiling?
|
|
|||||||||||
|
|
|
I don't think that's possible - its the way Python works. The best you could do, I think, is to have some kind of automated script which deletes I've personally not had this trouble before, but try checking the timestamps on the files. You could try running |
||||
|
|
|
In python 2.6, you should be able to supply the -B option. |
||
|
|
|
|
You are looking for compileall
|
||
|
|
|
|
There are some modules which might help you: The py_compile module (http://effbot.org/librarybook/py-compile.htm) will allow you to explicitly compile modules (without running them like the 'import' statement does).
Also, the compileall module (http://effbot.org/librarybook/compileall.htm) will compile all the modules found in a directory.
|
||
|
|
