summaryrefslogtreecommitdiffstats
path: root/Lib/test/crashers/bogus_code_obj.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/crashers/bogus_code_obj.py')
-rw-r--r--Lib/test/crashers/bogus_code_obj.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/crashers/bogus_code_obj.py b/Lib/test/crashers/bogus_code_obj.py
index 613ae51..43815c1 100644
--- a/Lib/test/crashers/bogus_code_obj.py
+++ b/Lib/test/crashers/bogus_code_obj.py
@@ -16,4 +16,4 @@ import types
co = types.CodeType(0, 0, 0, 0, '\x04\x71\x00\x00', (),
(), (), '', '', 1, '')
-exec co
+exec(co)