parsing.py (pymol-open-source-2.2.0) | : | parsing.py (pymol-open-source-2.3.0) | ||
---|---|---|---|---|
skipping to change at line 66 | skipping to change at line 66 | |||
# === Burdens placed on API functions... | # === Burdens placed on API functions... | |||
# | # | |||
# None. However, function must have real arguments for error checking. | # None. However, function must have real arguments for error checking. | |||
# | # | |||
from __future__ import absolute_import | from __future__ import absolute_import | |||
# Don't import __future__.print_function | # Don't import __future__.print_function | |||
if __name__=='pymol.parsing': | if True: | |||
import re | import re | |||
import sys | import sys | |||
import threading | import threading | |||
import types | import types | |||
import traceback | ||||
import inspect | import inspect | |||
from . import colorprinting | from . import colorprinting | |||
class QuietException(BaseException): | class QuietException(BaseException): | |||
pass | pass | |||
# constants for keyword modes | # constants for keyword modes | |||
SIMPLE = 0 # original pymol parsing (deprecated) | SIMPLE = 0 # original pymol parsing (deprecated) | |||
MOVIE = 1 # ignore ";", treat entire line as a single command | MOVIE = 1 # ignore ";", treat entire line as a single command | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 1 lines changed or added |