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 BTaskaya
Recipients BTaskaya, gvanrossum, lys.nikolaou, pablogsal, rhettinger
Date 2020-09-08.20:51:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1599598288.3.0.0397094348264.issue41746@roundup.psfhosted.org>
In-reply-to
Content
We already have a specialized type for int (actually an enumeration);
typedef struct {
    Py_ssize_t size;
    void *elements[1];
} asdl_seq;

typedef struct {
    Py_ssize_t size;
    int elements[1];
} asdl_int_seq;

Why not just include these in the Python-ast.h and auto-generate them in the asdl_c.py
History
Date User Action Args
2020-09-08 20:51:28BTaskayasetrecipients: + BTaskaya, gvanrossum, rhettinger, lys.nikolaou, pablogsal
2020-09-08 20:51:28BTaskayasetmessageid: <1599598288.3.0.0397094348264.issue41746@roundup.psfhosted.org>
2020-09-08 20:51:28BTaskayalinkissue41746 messages
2020-09-08 20:51:28BTaskayacreate