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 vstinner
Recipients skrah, vstinner
Date 2012-02-22.09:43:13
SpamBayes Score 0.05485602
Marked as misclassified No
Message-id <CAMpsgwawjd3DdBoDm6hC8Rp8xc=hwaRMVQrHUpm6+OGxFqaq9Q@mail.gmail.com>
In-reply-to <1329900692.24.0.951186261982.issue14085@psf.upfronthosting.co.za>
Content
Can you try to cast value to Py_UCS4 in assertions of
PyUnicode_WRITE() macro? For example, replace
   assert(value <= 0xff);
by
   assert((Py_UCS4)value <= 0xff);
History
Date User Action Args
2012-02-22 09:43:13vstinnersetrecipients: + vstinner, skrah
2012-02-22 09:43:13vstinnerlinkissue14085 messages
2012-02-22 09:43:13vstinnercreate