summaryrefslogtreecommitdiffstats
path: root/Lib/test/crashers/infinite_rec_5.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/crashers/infinite_rec_5.py')
-rw-r--r--Lib/test/crashers/infinite_rec_5.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/Lib/test/crashers/infinite_rec_5.py b/Lib/test/crashers/infinite_rec_5.py
deleted file mode 100644
index 18d2963..0000000
--- a/Lib/test/crashers/infinite_rec_5.py
+++ /dev/null
@@ -1,10 +0,0 @@
-
-# http://python.org/sf/1267884
-
-import types
-
-class C:
- __str__ = types.InstanceType.__str__
-
-if __name__ == '__main__':
- str(C()) # segfault: infinite recursion in C