python: update some incorrect or obsolete code
* tests/python/ipnbdoctest.py: Use importlib instead of imp. * tests/python/ltlparse.py: Fix invalid escape sequence.
This commit is contained in:
parent
6623af67e6
commit
f5d53e3a5e
2 changed files with 3 additions and 3 deletions
|
|
@ -22,9 +22,9 @@ except ImportError:
|
|||
print('Python 3.x is needed to run this script.')
|
||||
sys.exit(77)
|
||||
|
||||
import imp
|
||||
import importlib
|
||||
try:
|
||||
imp.find_module('IPython')
|
||||
importlib.util.find_spec('IPython')
|
||||
except:
|
||||
print('IPython is needed to run this script.')
|
||||
sys.exit(77)
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ import spot
|
|||
|
||||
e = spot.default_environment.instance()
|
||||
|
||||
l = ['GFa', 'a U (((b)) xor c)', '!(FFx <=> Fx)', 'a \/ a \/ b \/ a \/ a'];
|
||||
l = ['GFa', 'a U (((b)) xor c)', '!(FFx <=> Fx)', 'a \\/ a \\/ b \\/ a \\/ a']
|
||||
|
||||
for str1 in l:
|
||||
pf = spot.parse_infix_psl(str1, e, False)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue