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 larry, nadeem.vawda, serhiy.storchaka, vajrasky
Date 2014-01-22.10:13:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390385639.26.0.160269636019.issue20185@psf.upfronthosting.co.za>
In-reply-to
Content
1. In list.index use custom converter.

/*[python input]

class slice_index_converter(CConverter):
    type = 'Py_ssize_t'
    converter = '_PyEval_SliceIndex'

[python start generated code]*/

2. In list.__init__ use either "unspecified" default value or optional group without default value.

3. This looks as Argument Clinic bug.
History
Date User Action Args
2014-01-22 10:13:59serhiy.storchakasetrecipients: + serhiy.storchaka, larry, nadeem.vawda, vajrasky
2014-01-22 10:13:59serhiy.storchakasetmessageid: <1390385639.26.0.160269636019.issue20185@psf.upfronthosting.co.za>
2014-01-22 10:13:59serhiy.storchakalinkissue20185 messages
2014-01-22 10:13:59serhiy.storchakacreate