In which scenario it is useful to use Disassembly on python?
Posted
by systempuntoout
on Stack Overflow
See other posts from Stack Overflow
or by systempuntoout
Published on 2010-04-20T14:57:18Z
Indexed on
2010/04/20
15:03 UTC
Read the original article
Hit count: 320
The dis module can be effectively used to disassemble Python methods, functions and classes into low-level interpreter instructions.
I know that dis
information can be used for:
1. Find race condition in programs that use threads
2. Find possible optimizations
From your experience, do you know any other scenarios where Disassembly Python feature could be useful?
© Stack Overflow or respective owner