├── .gitignore ├── MANIFEST ├── PKG-INFO ├── README.rst ├── compile_tests ├── scripts └── uncompyle2 ├── setup.cfg ├── setup.py ├── test ├── compile_tests ├── test_applyEquiv.py ├── test_augmentedAssign.py ├── test_class.py ├── test_del.py ├── test_divide_future.py ├── test_divide_no_future.py ├── test_docstring.py ├── test_empty.py ├── test_exceptions.py ├── test_exec.py ├── test_expressions.py ├── test_extendedImport.py ├── test_extendedPrint.py ├── test_extendedarg.py ├── test_functions.py ├── test_global.py ├── test_globals.py ├── test_import.py ├── test_import_as.py ├── test_integers.py ├── test_iterators.py ├── test_lambda.py ├── test_listComprehensions.py ├── test_loops.py ├── test_loops2.py ├── test_mine.py ├── test_misc.py ├── test_nested_elif.py ├── test_nested_scopes.py ├── test_prettyprint.py ├── test_print.py ├── test_print_to.py ├── test_single_stmt.py ├── test_slices.py ├── test_tuple_params.py ├── test_tuples.py └── test_yield.py ├── test_pythonlib.py └── uncompyle2 ├── __init__.py ├── disas.py ├── magics.py ├── opcode ├── __init__.py ├── opcode_23.py ├── opcode_24.py ├── opcode_25.py ├── opcode_26.py └── opcode_27.py ├── parser.py ├── scanner.py ├── scanner25.py ├── scanner26.py ├── scanner27.py ├── spark.py ├── verify.py └── walker.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/MANIFEST -------------------------------------------------------------------------------- /PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/PKG-INFO -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/README.rst -------------------------------------------------------------------------------- /compile_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/compile_tests -------------------------------------------------------------------------------- /scripts/uncompyle2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/scripts/uncompyle2 -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/setup.py -------------------------------------------------------------------------------- /test/compile_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/compile_tests -------------------------------------------------------------------------------- /test/test_applyEquiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_applyEquiv.py -------------------------------------------------------------------------------- /test/test_augmentedAssign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_augmentedAssign.py -------------------------------------------------------------------------------- /test/test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_class.py -------------------------------------------------------------------------------- /test/test_del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_del.py -------------------------------------------------------------------------------- /test/test_divide_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_divide_future.py -------------------------------------------------------------------------------- /test/test_divide_no_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_divide_no_future.py -------------------------------------------------------------------------------- /test/test_docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_docstring.py -------------------------------------------------------------------------------- /test/test_empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_exceptions.py -------------------------------------------------------------------------------- /test/test_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_exec.py -------------------------------------------------------------------------------- /test/test_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_expressions.py -------------------------------------------------------------------------------- /test/test_extendedImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_extendedImport.py -------------------------------------------------------------------------------- /test/test_extendedPrint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_extendedPrint.py -------------------------------------------------------------------------------- /test/test_extendedarg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_extendedarg.py -------------------------------------------------------------------------------- /test/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_functions.py -------------------------------------------------------------------------------- /test/test_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_global.py -------------------------------------------------------------------------------- /test/test_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_globals.py -------------------------------------------------------------------------------- /test/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_import.py -------------------------------------------------------------------------------- /test/test_import_as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_import_as.py -------------------------------------------------------------------------------- /test/test_integers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_integers.py -------------------------------------------------------------------------------- /test/test_iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_iterators.py -------------------------------------------------------------------------------- /test/test_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_lambda.py -------------------------------------------------------------------------------- /test/test_listComprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_listComprehensions.py -------------------------------------------------------------------------------- /test/test_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_loops.py -------------------------------------------------------------------------------- /test/test_loops2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_loops2.py -------------------------------------------------------------------------------- /test/test_mine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_mine.py -------------------------------------------------------------------------------- /test/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_misc.py -------------------------------------------------------------------------------- /test/test_nested_elif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_nested_elif.py -------------------------------------------------------------------------------- /test/test_nested_scopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_nested_scopes.py -------------------------------------------------------------------------------- /test/test_prettyprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_prettyprint.py -------------------------------------------------------------------------------- /test/test_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_print.py -------------------------------------------------------------------------------- /test/test_print_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_print_to.py -------------------------------------------------------------------------------- /test/test_single_stmt.py: -------------------------------------------------------------------------------- 1 | print 5 2 | -------------------------------------------------------------------------------- /test/test_slices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_slices.py -------------------------------------------------------------------------------- /test/test_tuple_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_tuple_params.py -------------------------------------------------------------------------------- /test/test_tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_tuples.py -------------------------------------------------------------------------------- /test/test_yield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test/test_yield.py -------------------------------------------------------------------------------- /test_pythonlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/test_pythonlib.py -------------------------------------------------------------------------------- /uncompyle2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/__init__.py -------------------------------------------------------------------------------- /uncompyle2/disas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/disas.py -------------------------------------------------------------------------------- /uncompyle2/magics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/magics.py -------------------------------------------------------------------------------- /uncompyle2/opcode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uncompyle2/opcode/opcode_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/opcode/opcode_23.py -------------------------------------------------------------------------------- /uncompyle2/opcode/opcode_24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/opcode/opcode_24.py -------------------------------------------------------------------------------- /uncompyle2/opcode/opcode_25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/opcode/opcode_25.py -------------------------------------------------------------------------------- /uncompyle2/opcode/opcode_26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/opcode/opcode_26.py -------------------------------------------------------------------------------- /uncompyle2/opcode/opcode_27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/opcode/opcode_27.py -------------------------------------------------------------------------------- /uncompyle2/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/parser.py -------------------------------------------------------------------------------- /uncompyle2/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/scanner.py -------------------------------------------------------------------------------- /uncompyle2/scanner25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/scanner25.py -------------------------------------------------------------------------------- /uncompyle2/scanner26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/scanner26.py -------------------------------------------------------------------------------- /uncompyle2/scanner27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/scanner27.py -------------------------------------------------------------------------------- /uncompyle2/spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/spark.py -------------------------------------------------------------------------------- /uncompyle2/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/verify.py -------------------------------------------------------------------------------- /uncompyle2/walker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mysterie/uncompyle2/HEAD/uncompyle2/walker.py --------------------------------------------------------------------------------