This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients erlendaasland, pablogsal, serhiy.storchaka, shreyanavigyan, vstinner
Date 2021-04-26.12:45:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1619441125.75.0.855110900503.issue43916@roundup.psfhosted.org>
In-reply-to
Content
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>
History
Date User Action Args
2021-04-26 12:45:25serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, pablogsal, erlendaasland, shreyanavigyan
2021-04-26 12:45:25serhiy.storchakasetmessageid: <1619441125.75.0.855110900503.issue43916@roundup.psfhosted.org>
2021-04-26 12:45:25serhiy.storchakalinkissue43916 messages
2021-04-26 12:45:25serhiy.storchakacreate