__init__.py 577 B

12345678910111213
  1. """Here we have parser grammars for the different Python versions.
  2. Instead of full grammars, we have full grammars for certain Python versions
  3. and the others indicate differences between a neighboring version.
  4. For example Python 2.6, 2.7, 3.2, and 3.7 are largely "base" versions
  5. which work off off parse2.py, parse3.py, and parse37base.py.
  6. Some examples:
  7. Python 3.3 diffs off of 3.2; 3.1 and 3.0 diff off of 3.2; Python 1.0..Python 2.5 diff off of
  8. Python 2.6 and Python 3.8 diff off of 3.7
  9. """
  10. from decompyle3.parsers.main import *
  11. from decompyle3.parsers.treenode import *