It seems they canceled in Python 3.0 all the easy way to quickly load a script file - both execfile() and reload().
Is there an obvious alternative I'm missing?
|
It seems they canceled in Python 3.0 all the easy way to quickly load a script file - both execfile() and reload(). Is there an obvious alternative I'm missing? |
||||
|
You could write your own function:
If you really needed to... |
|||||||||||||||||
|
|
You are just supposed to read the file and exec the code yourself. 2to3 current replaces
as
(The compile call isn't strictly needed, but it associates the filename with the code object making debugging a little easier.) See: |
|||||||
|
|
If the script you want to load is in the same directory than the one you run, maybe "import" will do the job ? If you need to dynamically import code the built-in function __ import__ and the module imp are worth looking at.
test.py:
If you're using Python 3.1 or later, you should also take a look at importlib. |
||||
|
|
|
This one is better, since it takes the globals and locals from the caller:
|
|||
|
|
|
Note that the above pattern will fail if you're using PEP-263 encoding declarations that aren't ascii or utf-8. You need to find the encoding of the data, and encode it correctly before handing it to exec().
|
|||
|
|
|
According to the documentation, instead of
Use
See: |
|||
|
|
reloadis back, asimp.reload, since 3.2. – Dougal May 16 at 1:21