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 ideasman42
Recipients ideasman42, rhettinger
Date 2009-08-02.03:02:12
SpamBayes Score 1.2400207e-06
Marked as misclassified No
Message-id <1249182135.76.0.360169406164.issue6616@psf.upfronthosting.co.za>
In-reply-to
Content
Hi Raymond, in general I agree with your comments that adding 2 ways to
do things is not great. The reason I still think this is an advantage is
that I know the API well enough (with manipulating dicts/lists etc) and
I still want this function for the sake of convenience.

For the same reason that PyList_SET_ITEM is useful, this is useful too.

Loosing the error checking is a disadvantage but in many cases API's
dont do error checking for every new item allocated.

Python's own code does this in a few cases with PyList_SET_ITEM...
eg.
 ./Python/_warnings.c:857: PyList_SET_ITEM(filters, 1,
create_filter(PyExc_ImportWarning, "ignore"))
./Python/Python-ast.c:2757: PyList_SET_ITEM(value, i,
ast2obj_cmpop((cmpop_ty)asdl_seq_GET(o->v.Compare.ops, i)));
History
Date User Action Args
2009-08-02 03:02:15ideasman42setrecipients: + ideasman42, rhettinger
2009-08-02 03:02:15ideasman42setmessageid: <1249182135.76.0.360169406164.issue6616@psf.upfronthosting.co.za>
2009-08-02 03:02:13ideasman42linkissue6616 messages
2009-08-02 03:02:13ideasman42create