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 serhiy.storchaka
Date 2013-05-16.07:18:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368688732.05.0.0592357298734.issue17993@psf.upfronthosting.co.za>
In-reply-to
Content
I just found a bug in Tools/scripts/abitype.py:

typeslots = [
    'tp_name',
    'tp_basicsize',
    ...
    'tp_subclasses',
    'tp_weaklist',
    'tp_del'
    'tp_version_tag'
]

There is a missed comma after 'tp_del'.

Perhaps there are other similar bugs in Python sources.
History
Date User Action Args
2013-05-16 07:18:52serhiy.storchakasetrecipients: + serhiy.storchaka
2013-05-16 07:18:52serhiy.storchakasetmessageid: <1368688732.05.0.0592357298734.issue17993@psf.upfronthosting.co.za>
2013-05-16 07:18:51serhiy.storchakalinkissue17993 messages
2013-05-16 07:18:51serhiy.storchakacreate