mirror of
https://github.com/python/cpython.git
synced 2025-09-19 23:20:25 +00:00
9 lines
188 B
Python
9 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
|