mirror of
https://github.com/python/cpython.git
synced 2025-11-03 19:34:08 +00:00
add another crash reported by Thomas Wouters
This commit is contained in:
parent
5b093a0b73
commit
ae1df41127
1 changed files with 10 additions and 0 deletions
10
Lib/test/crashers/recursive_call.py
Normal file
10
Lib/test/crashers/recursive_call.py
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
# No bug report AFAIK, mail on python-dev on 2006-01-10
|
||||||
|
import sys
|
||||||
|
|
||||||
|
sys.setrecursionlimit(1 << 30)
|
||||||
|
f = lambda f:f(f)
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
f(f)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue