]> granicus.if.org Git - python/commit
Issue #25227: Cleanup unicode_encode_ucs1() error handler
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 24 Sep 2015 12:45:00 +0000 (14:45 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 24 Sep 2015 12:45:00 +0000 (14:45 +0200)
commit0030cd52dacdd95d2017a0947d661feb737449af
treed05d29d8118ab100234c92606064519ec7413094
parent1e5fcc3dea4263a5c01ecc4cd9b5d755fab5ee6a
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
Objects/unicodeobject.c