Files
python-uncompyle6/test/bytecode_3.2
rocky a65a8bb68e Fix 3.2 for/if loopback bug
problem was handling in Python 3.2

 for ...
    if ...
    else:
      ....
      jump for
    come from if
    jump for

In later Python 3's a "come from" is removed.

Also, start to DRY parser{,2,3} grammar rules.
2016-05-08 12:09:50 -04:00
..
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2016-05-05 04:41:23 -04:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-27 15:19:53 -05:00
2015-12-21 15:41:21 -05:00

These are byte-compiled programs compiled by Python 3.2

The numbers in the filenames are to assist running the programs from
the simplest to more complex. For example, many tests have assignment
statements or function calls, so we want to test those constructs
first.

Code and organization merged from uncompyle3, uncompyle{,2}, and pycdc