Message332183
| Author | shuoz |
|---|---|
| Recipients | shuoz |
| Date | 2018-12-20.06:53:16 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1545288797.27.0.788709270274.issue35542@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
stack exhaustion in 3.6.7.
in python 3.6.7 set recursive depth 20000 will exhaustion stack and get Segmentation fault. But this dont happen in python 2.7
```
import sys
sys.setrecursionlimit(20000)
def f():
f()
f()
``` |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2018-12-20 06:53:17 | shuoz | set | recipients: + shuoz |
| 2018-12-20 06:53:17 | shuoz | set | messageid: <1545288797.27.0.788709270274.issue35542@psf.upfronthosting.co.za> |
| 2018-12-20 06:53:17 | shuoz | link | issue35542 messages |
| 2018-12-20 06:53:16 | shuoz | create | |