mirror of
https://github.com/python/cpython.git
synced 2025-11-02 06:31:29 +00:00
10 lines
188 B
Python
10 lines
188 B
Python
|
|
"""
|
||
|
|
Broken bytecode objects can easily crash the interpreter.
|
||
|
|
"""
|
||
|
|
|
||
|
|
import types
|
||
|
|
|
||
|
|
co = types.CodeType(0, 0, 0, 0, '\x04\x71\x00\x00', (),
|
||
|
|
(), (), '', '', 1, '')
|
||
|
|
exec co
|