LICENSE
MANIFEST.in
README.md
pyproject.toml
src/depyo/__init__.py
src/depyo/__main__.py
src/depyo/ast_node.py
src/depyo/binary_reader.py
src/depyo/code_reader.py
src/depyo/opcode.py
src/depyo/opcodes.py
src/depyo/pyc_decompiler.py
src/depyo/pyc_disassembler.py
src/depyo/pyc_reader.py
src/depyo/pyc_result.py
src/depyo/python_object.py
src/depyo/stack_history.py
src/depyo/unpickle.py
src/depyo/zip_reader.py
src/depyo.egg-info/PKG-INFO
src/depyo.egg-info/SOURCES.txt
src/depyo.egg-info/dependency_links.txt
src/depyo.egg-info/entry_points.txt
src/depyo.egg-info/requires.txt
src/depyo.egg-info/top_level.txt
src/depyo/bytecode/__init__.py
src/depyo/bytecode/python_1_0.py
src/depyo/bytecode/python_1_1.py
src/depyo/bytecode/python_1_3.py
src/depyo/bytecode/python_1_4.py
src/depyo/bytecode/python_1_5.py
src/depyo/bytecode/python_1_6.py
src/depyo/bytecode/python_2_0.py
src/depyo/bytecode/python_2_1.py
src/depyo/bytecode/python_2_2.py
src/depyo/bytecode/python_2_3.py
src/depyo/bytecode/python_2_4.py
src/depyo/bytecode/python_2_5.py
src/depyo/bytecode/python_2_6.py
src/depyo/bytecode/python_2_7.py
src/depyo/bytecode/python_3_0.py
src/depyo/bytecode/python_3_1.py
src/depyo/bytecode/python_3_10.py
src/depyo/bytecode/python_3_11.py
src/depyo/bytecode/python_3_12.py
src/depyo/bytecode/python_3_13.py
src/depyo/bytecode/python_3_14.py
src/depyo/bytecode/python_3_15.py
src/depyo/bytecode/python_3_2.py
src/depyo/bytecode/python_3_3.py
src/depyo/bytecode/python_3_4.py
src/depyo/bytecode/python_3_5.py
src/depyo/bytecode/python_3_6.py
src/depyo/bytecode/python_3_7.py
src/depyo/bytecode/python_3_8.py
src/depyo/bytecode/python_3_9.py
src/depyo/handlers/__init__.py
src/depyo/handlers/_util.py
src/depyo/handlers/binary_ops.py
src/depyo/handlers/collections_update.py
src/depyo/handlers/comparisons.py
src/depyo/handlers/context_managers.py
src/depyo/handlers/control_flow_jumps.py
src/depyo/handlers/exceptions_blocks.py
src/depyo/handlers/formatting.py
src/depyo/handlers/function_calls.py
src/depyo/handlers/function_class_build.py
src/depyo/handlers/generators_async.py
src/depyo/handlers/imports.py
src/depyo/handlers/load_store_names.py
src/depyo/handlers/loop_iterator.py
src/depyo/handlers/misc_other.py
src/depyo/handlers/pattern_matching.py
src/depyo/handlers/stack_ops.py
src/depyo/handlers/subscript_slice.py
src/depyo/handlers/unary_ops.py
src/depyo/handlers/unpack.py