Message391910
It is incomplete. For example arrayiterator did have tp_new = NULL (in other words, PyArrayIter_Type.tp_new was not set to non-NULL value).
In 3.9:
>>> import array
>>> type(iter(array.array('I')))()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: cannot create 'arrayiterator' instances
In 3.10:
>>> import array
>>> type(iter(array.array('I')))()
<array.arrayiterator object at 0x7f02f88db5c0> |
|
Date |
User |
Action |
Args |
2021-04-26 12:45:25 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, vstinner, pablogsal, erlendaasland, shreyanavigyan |
2021-04-26 12:45:25 | serhiy.storchaka | set | messageid: <1619441125.75.0.855110900503.issue43916@roundup.psfhosted.org> |
2021-04-26 12:45:25 | serhiy.storchaka | link | issue43916 messages |
2021-04-26 12:45:25 | serhiy.storchaka | create | |
|