[issue22286] Allow backslashreplace error handler to be used on input

2015-01-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___

[issue22286] Allow backslashreplace error handler to be used on input

2015-01-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1e8937861ee3 by Victor Stinner in branch 'default': Issue #22286, #23321: Fix failing test on Windows code page 932 https://hg.python.org/cpython/rev/1e8937861ee3 -- ___ Python tracker

[issue22286] Allow backslashreplace error handler to be used on input

2015-01-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, I see. The patch exposed existing bug in decoding error handing. See issue23321 for this. -- ___ Python tracker ___

[issue22286] Allow backslashreplace error handler to be used on input

2015-01-25 Thread Steve Dower
Changes by Steve Dower : -- nosy: +steve.dower ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue22286] Allow backslashreplace error handler to be used on input

2015-01-25 Thread R. David Murray
R. David Murray added the comment: Looks like the buildbots aren't happy with this change. -- nosy: +r.david.murray ___ Python tracker ___ ___

[issue22286] Allow backslashreplace error handler to be used on input

2015-01-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset dd8a03e98158 by Serhiy Storchaka in branch 'default': Issue #22286: The "backslashreplace" error handlers now works with https://hg.python.org/cpython/rev/dd8a03e98158 -- nosy: +python-dev ___ Python trac

[issue22286] Allow backslashreplace error handler to be used on input

2015-01-24 Thread Nick Coghlan
Nick Coghlan added the comment: +1 from me for merging, although I suspect you'll need to adjust the codecs.rst changes first. -- stage: patch review -> commit review ___ Python tracker ___

[issue22286] Allow backslashreplace error handler to be used on input

2015-01-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could you make a review Nick to get this feature in the first alpha. -- ___ Python tracker ___ ___

[issue22286] Allow backslashreplace error handler to be used on input

2015-01-12 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue22286] Allow backslashreplace error handler to be used on input

2014-11-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Synchronized with the tip (resolved conflicts with issue22470 and issue19676). -- assignee: -> serhiy.storchaka keywords: +needs review Added file: http://bugs.python.org/file37274/backslashreplace_decode_2.patch _

[issue22286] Allow backslashreplace error handler to be used on input

2014-09-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue22286] Allow backslashreplace error handler to be used on input

2014-09-23 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Possible integer overflow in error handlers ___ Python tracker ___ ___ Python-bugs-lis

[issue22286] Allow backslashreplace error handler to be used on input

2014-09-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch. -- components: +Extension Modules keywords: +patch nosy: +serhiy.storchaka stage: needs patch -> patch review Added file: http://bugs.python.org/file36697/backslashreplace_decode.patch ___ Python tr

[issue22286] Allow backslashreplace error handler to be used on input

2014-08-27 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue22286] Allow backslashreplace error handler to be used on input

2014-08-27 Thread Nick Coghlan
New submission from Nick Coghlan: In the discussion on issue 18814, Antoine pointed out that in a Python 3 world, using backslashescape during decoding actually makes sense - it lets you accurately report arbitrary bytes in the sequence, without needing surrogateescape or surrogatepass to be u