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