Explore >> Select a destination


You are here

speakerdeck.com
| | pymotw.com
3.8 parsecs away

Travel
| | [AI summary] The provided text is a detailed exploration of Python's disassembler and its applications. It covers topics such as using the dis module to inspect bytecode, debugging with dis, and optimizing code by analyzing disassembled output. The text also discusses compiler optimizations like constant folding and the use of itertools for efficient iteration. It includes examples of code, disassembled output, and performance comparisons between different implementations.
| | eli.thegreenplace.net
3.1 parsecs away

Travel
| | [AI summary] This article explains how to add a new 'until' statement to Python's compiler by modifying its grammar, AST generation, and bytecode compilation processes.
| | blog.quarkslab.com
5.2 parsecs away

Travel
| | Where building a custom obfuscated Python interpreter for a Python packer turned into an optimized Python interpreter.
| | benhoyt.com
25.1 parsecs away

Travel
| An explanation of how to implement a simple hash table data structure, with code and examples in the C programming language.