Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
802319dd
Commit
802319dd
authored
Mar 08, 2012
by
Alexandre Duret-Lutz
Browse files
* wrap/python/ajax/spot.in: Fix emulation of execfile.
parent
91143059
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
802319dd
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>
ltl2tgba.html: save state in URL to preserve history
...
...
wrap/python/ajax/spot.in
View file @
802319dd
...
...
@@ -199,8 +199,7 @@ if ('SERVER_SOFTWARE' in os.environ and
try
:
# execfile('ltl2tgba.opt') no longuer work with Python 3.
exec
(
compile
(
open
(
"ltl2tgba.opt"
).
read
(),
"ltl2tgba.opt"
,
'exec'
),
global_vars
,
local_vars
)
exec
(
compile
(
open
(
"ltl2tgba.opt"
).
read
(),
"ltl2tgba.opt"
,
'exec'
))
except
IOError
:
pass
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment