ChangeLog
HISTORY.md
LICENSE
MANIFEST.in
README
README.rst
__pkginfo__.py
setup.cfg
setup.py
bin/pydisassemble
bin/uncompyle6
pytest/test_deparse.py
pytest/test_disasm.py
pytest/test_load.py
pytest/test_single_compile.py
test/add-test.py
test/dis-compare.py
test/simple-uncompyle-code-test.py
test/test_pythonlib.py
test/ok_lib2.6/anydbm.py
test/ok_lib2.7/aifc.py
test/ok_lib2.7/antigravity.py
test/ok_lib2.7/anydbm.py
test/ok_lib2.7/asynchat.py
test/ok_lib2.7/atexit.py
test/ok_lib2.7/audiodev.py
test/ok_lib2.7/base64.py
test/ok_lib2.7/binhex.py
test/ok_lib2.7/bisect.py
test/ok_lib2.7/calendar.py
test/ok_lib2.7/cgitb.py
test/ok_lib2.7/chunk.py
test/ok_lib2.7/codeop.py
test/ok_lib2.7/colorsys.py
test/ok_lib2.7/commands.py
test/ok_lib2.7/compileall.py
test/ok_lib2.7/dircache.py
test/ok_lib2.7/dis.py
test/ok_lib3.4/antigravity.py
test/ok_lib3.4/bisect.py
test/simple_source/branching/05_if.py
test/simple_source/branching/05_ifelse.py
test/simple_source/branching/10_if_else_ternary.py
test/simple_source/calls/01_fns.py
test/simple_source/calls/01_positional.py
test/simple_source/calls/10_keyword.py
test/simple_source/comprehension/01_list_comprehension.py
test/simple_source/comprehension/05_list_comprehension.py
test/simple_source/def/01_class.py
test/simple_source/def/02_closure.py
test/simple_source/def/02_def.py
test/simple_source/def/05_abc_class.py
test/simple_source/def/05_class.py
test/simple_source/def/06_classbug.py
test/simple_source/def/10_class.py
test/simple_source/exception/01_try_except.py
test/simple_source/exception/05_try_except.py
test/simple_source/exception/20_try_except.py
test/simple_source/exception/25_try_except.py
test/simple_source/expression/05_const_map.py
test/simple_source/expression/05_long_list.py
test/simple_source/looping/10_for.py
test/simple_source/looping/10_while.py
test/simple_source/operation_binary/add.py
test/simple_source/operation_binary/and.py
test/simple_source/operation_binary/divide_floor.py
test/simple_source/operation_binary/divide_true.py
test/simple_source/operation_binary/modulo.py
test/simple_source/operation_binary/multiply.py
test/simple_source/operation_binary/or.py
test/simple_source/operation_binary/power.py
test/simple_source/operation_binary/shift_left.py
test/simple_source/operation_binary/shift_right.py
test/simple_source/operation_binary/subscription.py
test/simple_source/operation_binary/subtract.py
test/simple_source/operation_binary/xor.py
test/simple_source/operation_comparison/equal.py
test/simple_source/operation_comparison/greater.py
test/simple_source/operation_comparison/greater_equal.py
test/simple_source/operation_comparison/less.py
test/simple_source/operation_comparison/less_equal.py
test/simple_source/operation_comparison/notequal.py
test/simple_source/operation_inplace/add.py
test/simple_source/operation_inplace/and.py
test/simple_source/operation_inplace/divide_floor.py
test/simple_source/operation_inplace/divide_true.py
test/simple_source/operation_inplace/modulo.py
test/simple_source/operation_inplace/multiply.py
test/simple_source/operation_inplace/or.py
test/simple_source/operation_inplace/power.py
test/simple_source/operation_inplace/shift_left.py
test/simple_source/operation_inplace/shift_right.py
test/simple_source/operation_inplace/subtract.py
test/simple_source/operation_inplace/xor.py
test/simple_source/operation_logic/01_boolean.py
test/simple_source/operation_logic/10_mixed_boolean.py
test/simple_source/operation_unary/invert.py
test/simple_source/operation_unary/iter.py
test/simple_source/operation_unary/negative.py
test/simple_source/operation_unary/not.py
test/simple_source/operation_unary/positive.py
test/simple_source/precedence/left.py
test/simple_source/precedence/right.py
test/simple_source/precedence/structure.py
test/simple_source/slice/02_slice.py
test/simple_source/stmts/00_assign.py
test/simple_source/stmts/00_import.py
test/simple_source/stmts/00_pass.py
test/simple_source/stmts/05_if_assign.py
test/simple_source/stmts/05_with.py
test/simple_source/stmts/10_del.py
test/simple_source/stmts/15_assert.py
test/simple_source/stmts/15_for_if.py
uncompyle6/__init__.py
uncompyle6/code.py
uncompyle6/disas.py
uncompyle6/load.py
uncompyle6/magics.py
uncompyle6/main.py
uncompyle6/marsh.py
uncompyle6/parser.py
uncompyle6/scanner.py
uncompyle6/verify.py
uncompyle6/version.py
uncompyle6.egg-info/PKG-INFO
uncompyle6.egg-info/SOURCES.txt
uncompyle6.egg-info/dependency_links.txt
uncompyle6.egg-info/requires.txt
uncompyle6.egg-info/top_level.txt
uncompyle6.egg-info/zip-safe
uncompyle6/opcodes/__init__.py
uncompyle6/opcodes/opcode_23.py
uncompyle6/opcodes/opcode_24.py
uncompyle6/opcodes/opcode_25.py
uncompyle6/opcodes/opcode_26.py
uncompyle6/opcodes/opcode_27.py
uncompyle6/opcodes/opcode_32.py
uncompyle6/opcodes/opcode_33.py
uncompyle6/opcodes/opcode_34.py
uncompyle6/opcodes/opcode_35.py
uncompyle6/opcodes/opcode_3x.py
uncompyle6/parsers/__init__.py
uncompyle6/parsers/astnode.py
uncompyle6/parsers/parse2.py
uncompyle6/parsers/parse3.py
uncompyle6/scanners/__init__.py
uncompyle6/scanners/dis35.py
uncompyle6/scanners/scanner25.py
uncompyle6/scanners/scanner26.py
uncompyle6/scanners/scanner27.py
uncompyle6/scanners/scanner3.py
uncompyle6/scanners/scanner32.py
uncompyle6/scanners/scanner33.py
uncompyle6/scanners/scanner34.py
uncompyle6/scanners/scanner35.py
uncompyle6/scanners/tok.py
uncompyle6/semantics/__init__.py
uncompyle6/semantics/fragments.py
uncompyle6/semantics/pysource.py