diff --git a/Reverse_Engineering/python/example_dis.py b/Reverse_Engineering/python/example_dis.py new file mode 100644 index 0000000..6518495 --- /dev/null +++ b/Reverse_Engineering/python/example_dis.py @@ -0,0 +1,12 @@ +#!/usr/bin/python + +#example of dis + +import dis + +def foo(a): + x = 3 + return x + a + + +print(dis.dis(foo.func_code))