Message337842
| Author | Saim Raza |
|---|---|
| Recipients | Saim Raza, vinay.sajip, xtreak |
| Date | 2019-03-13.10:41:03 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1552473663.86.0.361702412336.issue36272@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
Stack exhaustion doesn't seem to be due to be the root cause. A simple recursive function doesn't crash the interpreter in Python 3.6. >>> def rec(): rec() >>> rec() Traceback (most recent call last): File "<stdin>", line 1, in <module> File "<stdin>", line 1, in rec File "<stdin>", line 1, in rec File "<stdin>", line 1, in rec [Previous line repeated 995 more times] RecursionError: maximum recursion depth exceeded |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2019-03-13 10:41:03 | Saim Raza | set | recipients: + Saim Raza, vinay.sajip, xtreak |
| 2019-03-13 10:41:03 | Saim Raza | set | messageid: <1552473663.86.0.361702412336.issue36272@roundup.psfhosted.org> |
| 2019-03-13 10:41:03 | Saim Raza | link | issue36272 messages |
| 2019-03-13 10:41:03 | Saim Raza | create | |