* wrap/python/ajax/spot.in: Fix emulation of execfile.
This commit is contained in:
parent
9114305995
commit
802319ddbb
2 changed files with 5 additions and 2 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
|
2012-03-08 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||||
|
|
||||||
|
* wrap/python/ajax/spot.in: Fix emulation of execfile.
|
||||||
|
|
||||||
2012-03-04 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
2012-03-04 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||||
|
|
||||||
ltl2tgba.html: save state in URL to preserve history
|
ltl2tgba.html: save state in URL to preserve history
|
||||||
|
|
|
||||||
|
|
@ -199,8 +199,7 @@ if ('SERVER_SOFTWARE' in os.environ and
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# execfile('ltl2tgba.opt') no longuer work with Python 3.
|
# execfile('ltl2tgba.opt') no longuer work with Python 3.
|
||||||
exec(compile(open("ltl2tgba.opt").read(), "ltl2tgba.opt", 'exec'),
|
exec(compile(open("ltl2tgba.opt").read(), "ltl2tgba.opt", 'exec'))
|
||||||
global_vars, local_vars)
|
|
||||||
except IOError:
|
except IOError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue