Message311570
| Author | serhiy.storchaka |
|---|---|
| Recipients | benjamin.peterson, brett.cannon, ncoghlan, serhiy.storchaka, yselivanov |
| Date | 2018-02-03.18:29:47 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1517682587.99.0.467229070634.issue32758@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
There is also a regression in 3.7 when compile a long expression.
In 3.6:
>>> compile('+a'*1000000, '?', 'eval')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
RecursionError: maximum recursion depth exceeded during compilation
In 3.7:
>>> compile('+a'*1000000, '?', 'eval')
Segmentation fault (core dumped) |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2018-02-03 18:29:48 | serhiy.storchaka | set | recipients: + serhiy.storchaka, brett.cannon, ncoghlan, benjamin.peterson, yselivanov |
| 2018-02-03 18:29:47 | serhiy.storchaka | set | messageid: <1517682587.99.0.467229070634.issue32758@psf.upfronthosting.co.za> |
| 2018-02-03 18:29:47 | serhiy.storchaka | link | issue32758 messages |
| 2018-02-03 18:29:47 | serhiy.storchaka | create | |