summaryrefslogtreecommitdiffstats
path: root/Lib/test/crashers/infinite_rec_3.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/crashers/infinite_rec_3.py')
-rw-r--r--Lib/test/crashers/infinite_rec_3.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/Lib/test/crashers/infinite_rec_3.py b/Lib/test/crashers/infinite_rec_3.py
deleted file mode 100644
index 0b04e4c..0000000
--- a/Lib/test/crashers/infinite_rec_3.py
+++ /dev/null
@@ -1,9 +0,0 @@
-
-# http://python.org/sf/1202533
-
-class A(object):
- pass
-A.__call__ = A()
-
-if __name__ == '__main__':
- A()() # segfault: infinite recursion in C