You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 16:59:52 +08:00
6 lines
99 B
Python
Executable File
6 lines
99 B
Python
Executable File
testcode = 'a = 12'
|
|
|
|
exec testcode
|
|
exec testcode in globals()
|
|
exec testcode in globals(), locals()
|