summaryrefslogtreecommitdiffstats
path: root/Lib/test/crashers/infinite_rec_1.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/crashers/infinite_rec_1.py')
-rw-r--r--Lib/test/crashers/infinite_rec_1.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/Lib/test/crashers/infinite_rec_1.py b/Lib/test/crashers/infinite_rec_1.py
deleted file mode 100644
index 573a509..0000000
--- a/Lib/test/crashers/infinite_rec_1.py
+++ /dev/null
@@ -1,11 +0,0 @@
-
-# http://python.org/sf/1202533
-
-import new, operator
-
-class A:
- pass
-A.__mul__ = new.instancemethod(operator.mul, None, A)
-
-if __name__ == '__main__':
- A()*2 # segfault: infinite recursion in C