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 scls
Recipients scls, serhiy.storchaka
Date 2018-09-26.14:58:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1537973905.3.0.545547206417.issue34810@psf.upfronthosting.co.za>
In-reply-to
Content
About raising exception with converting integer value that should overflow maybe we should have a parameter

    ctypes.c_uint8(256, raise=True)

will raise an exception but 

    ctypes.c_uint8(256)

will silently return c_ubyte(0)
History
Date User Action Args
2018-09-26 14:58:25sclssetrecipients: + scls, serhiy.storchaka
2018-09-26 14:58:25sclssetmessageid: <1537973905.3.0.545547206417.issue34810@psf.upfronthosting.co.za>
2018-09-26 14:58:25sclslinkissue34810 messages
2018-09-26 14:58:25sclscreate