commit | 0030cd52dacdd95d2017a0947d661feb737449af | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Sep 24 14:45:00 2015 +0200 |
committer | Victor Stinner <victor.stinner@gmail.com> | Thu Sep 24 14:45:00 2015 +0200 |
tree | d05d29d8118ab100234c92606064519ec7413094 | |
parent | 1e5fcc3dea4263a5c01ecc4cd9b5d755fab5ee6a [diff] |
Issue #25227: Cleanup unicode_encode_ucs1() error handler * Change limit type from unsigned int to Py_UCS4, to use the same type than the "ch" variable (an Unicode character). * Reuse ch variable for _Py_ERROR_XMLCHARREFREPLACE * Add some newlines for readability