Commit 73fa727e authored by Ezio Melotti's avatar Ezio Melotti

Fixed crasher. Patch by Florent Xicluna.

parent fc21e01b
...@@ -14,6 +14,6 @@ the user build or load random bytecodes anyway. Otherwise, this is a ...@@ -14,6 +14,6 @@ the user build or load random bytecodes anyway. Otherwise, this is a
import types import types
co = types.CodeType(0, 0, 0, 0, '\x04\x71\x00\x00', (), co = types.CodeType(0, 0, 0, 0, 0, b'\x04\x71\x00\x00',
(), (), '', '', 1, '') (), (), (), '', '', 1, b'')
exec(co) exec(co)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment