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 rhettinger
Recipients ideasman42, rhettinger
Date 2009-08-01.21:05:19
SpamBayes Score 4.7051842e-07
Marked as misclassified No
Message-id <1249160721.4.0.655559478536.issue6616@psf.upfronthosting.co.za>
In-reply-to
Content
> This simple patch allows...
>  PyList_APPEND(list, PyFloat_FromDouble(x))

This isn't a good idea because the error checking 
for the inner function is lost.  The current API
encourages keeping one function per line so that 
the ref counting and error-checking are more obvious.

Also, I'm not too keen on adding second-ways-to-do-it.
The C API is already somewhat fat, making it harder
to learn and remember.  The current API has standard
patterns of creating and consuming references.
Introducing variants that don't follow those patterns
makes it harder to review code and determine that it 
is correct.

It is better to learn to use the API as designed than
to commingle two different styles.
History
Date User Action Args
2009-08-01 21:05:21rhettingersetrecipients: + rhettinger, ideasman42
2009-08-01 21:05:21rhettingersetmessageid: <1249160721.4.0.655559478536.issue6616@psf.upfronthosting.co.za>
2009-08-01 21:05:20rhettingerlinkissue6616 messages
2009-08-01 21:05:19rhettingercreate