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 MrJean1, amaury.forgeotdarc, ixokai, loewis, mark.dickinson, michael.foord, piro, pitrou, ronaldoussoren, rpetrov, skip.montanaro, slmnhq, vstinner
Date 2010-10-20.16:56:00
SpamBayes Score 0.0024226313
Marked as misclassified No
Message-id <201010201855.53329.victor.stinner@haypocalc.com>
In-reply-to <1287592742.88.0.069476788224.issue4388@psf.upfronthosting.co.za>
Content
_Py_DecodeUTF8_surrogateescape() is a simplified version of 
PyUnicode_DecodeUTF8Stateful():
 - no "consumed" argument
 - only support surrogateescape error handler
 - no optimization
 - don't resize the buffer at exit

Hum, resize the buffer is maybe a good idea to not waste memory.
History
Date User Action Args
2010-10-20 16:56:02vstinnersetrecipients: + vstinner, loewis, skip.montanaro, ixokai, ronaldoussoren, amaury.forgeotdarc, mark.dickinson, pitrou, piro, MrJean1, rpetrov, michael.foord, slmnhq
2010-10-20 16:56:00vstinnerlinkissue4388 messages
2010-10-20 16:56:00vstinnercreate