Commit a330d39
Fix except-tuple, list overflow, list kwargs — 3 major infra fixes
1. exc_isinstance: Handle tuple of exception types in except clauses.
`except (MemoryError, OverflowError)` now works. Previously only
single-type except clauses matched. Supports nested tuples too.
2. list_repeat/list_inplace_repeat: Add overflow checks before huge
allocations. `[0] * sys.maxsize` now raises OverflowError instead
of fatal OOM. Limit: 256M items (~2GB).
3. list_type_call: Reject keyword arguments. `list(sequence=[])`
now raises TypeError("list() takes no keyword arguments").
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>1 parent 4c4d3ef commit a330d39
2 files changed
Lines changed: 77 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
448 | 448 | | |
449 | 449 | | |
450 | 450 | | |
| 451 | + | |
| 452 | + | |
451 | 453 | | |
452 | | - | |
| 454 | + | |
| 455 | + | |
| 456 | + | |
| 457 | + | |
| 458 | + | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
453 | 462 | | |
454 | 463 | | |
455 | 464 | | |
| |||
464 | 473 | | |
465 | 474 | | |
466 | 475 | | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | + | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + | |
| 491 | + | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + | |
| 508 | + | |
| 509 | + | |
| 510 | + | |
467 | 511 | | |
468 | 512 | | |
469 | 513 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1660 | 1660 | | |
1661 | 1661 | | |
1662 | 1662 | | |
1663 | | - | |
| 1663 | + | |
1664 | 1664 | | |
| 1665 | + | |
| 1666 | + | |
| 1667 | + | |
| 1668 | + | |
1665 | 1669 | | |
1666 | 1670 | | |
1667 | 1671 | | |
| |||
1711 | 1715 | | |
1712 | 1716 | | |
1713 | 1717 | | |
| 1718 | + | |
| 1719 | + | |
| 1720 | + | |
| 1721 | + | |
| 1722 | + | |
| 1723 | + | |
1714 | 1724 | | |
1715 | 1725 | | |
1716 | 1726 | | |
| |||
1879 | 1889 | | |
1880 | 1890 | | |
1881 | 1891 | | |
| 1892 | + | |
| 1893 | + | |
| 1894 | + | |
1882 | 1895 | | |
1883 | 1896 | | |
1884 | 1897 | | |
| |||
1966 | 1979 | | |
1967 | 1980 | | |
1968 | 1981 | | |
| 1982 | + | |
| 1983 | + | |
| 1984 | + | |
| 1985 | + | |
| 1986 | + | |
1969 | 1987 | | |
1970 | 1988 | | |
1971 | 1989 | | |
| |||
1985 | 2003 | | |
1986 | 2004 | | |
1987 | 2005 | | |
| 2006 | + | |
| 2007 | + | |
| 2008 | + | |
| 2009 | + | |
| 2010 | + | |
| 2011 | + | |
1988 | 2012 | | |
1989 | 2013 | | |
1990 | 2014 | | |
| |||
2077 | 2101 | | |
2078 | 2102 | | |
2079 | 2103 | | |
| 2104 | + | |
| 2105 | + | |
| 2106 | + | |
| 2107 | + | |
| 2108 | + | |
| 2109 | + | |
| 2110 | + | |
2080 | 2111 | | |
2081 | 2112 | | |
2082 | 2113 | | |
| |||
0 commit comments