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 eryksun
Recipients eryksun, snwokenk, yselivanov
Date 2017-11-10.23:33:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1510356834.51.0.213398074469.issue32003@psf.upfronthosting.co.za>
In-reply-to
Content
The values are correct for the given type codes, which should be the same as the corresponding type codes for the array and struct modules. Except the array module doesn't support the "c" type. 

However, assigning b's' to an index of a "b" type array should fail with a TypeError, so I don't think you're showing actual code. A "b" array value is a signed integer in the range [-128, 127]. Larger magnitude integers can be assigned, but they alias (wrap around) back to this range.
History
Date User Action Args
2017-11-10 23:33:54eryksunsetrecipients: + eryksun, yselivanov, snwokenk
2017-11-10 23:33:54eryksunsetmessageid: <1510356834.51.0.213398074469.issue32003@psf.upfronthosting.co.za>
2017-11-10 23:33:54eryksunlinkissue32003 messages
2017-11-10 23:33:54eryksuncreate