mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-27 11:09:09 -04:00
13 lines
119 B
Python
13 lines
119 B
Python
#!/usr/bin/python
|
|
|
|
#example of dis
|
|
|
|
import dis
|
|
|
|
def foo(a):
|
|
x = 3
|
|
return x + a
|
|
|
|
|
|
print(dis.dis(foo.func_code))
|