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 eric.snow
Recipients eric.snow, skrah
Date 2015-06-01.16:19:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1433175550.71.0.808685138133.issue24347@psf.upfronthosting.co.za>
In-reply-to
Content
(from msg244574 in issue16991)

crash-1.py is due to an unchecked return value from _odictnode_VALUE().

We should probably use PyDict_GetItemWithError(), also in other
places.

I normally try to steer clear of stylistic remarks, but the
_odictnode* macros are hiding too many things.  As of now,
they were hiding that an assert() is always true and that a
return value was unchecked.

Also, they're very inconvenient in a debugger.
History
Date User Action Args
2015-06-01 16:19:10eric.snowsetrecipients: + eric.snow, skrah
2015-06-01 16:19:10eric.snowsetmessageid: <1433175550.71.0.808685138133.issue24347@psf.upfronthosting.co.za>
2015-06-01 16:19:10eric.snowlinkissue24347 messages
2015-06-01 16:19:10eric.snowcreate