]> granicus.if.org Git - python/commit
PyUnicode_Join(): Recent code changes introduced new
authorTim Peters <tim.peters@gmail.com>
Mon, 22 May 2006 19:17:04 +0000 (19:17 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 22 May 2006 19:17:04 +0000 (19:17 +0000)
commit286085c781e74627f00e9866b01456a7f52c9d5b
tree549acc6249505d7a8529771b4315226684f5503c
parent8a8e05a2b9c629827827295a7bd76494aed41b72
PyUnicode_Join():  Recent code changes introduced new
compiler warnings on Windows (signed vs unsigned mismatch
in comparisons).  Cleaned that up by switching more locals
to Py_ssize_t.  Simplified overflow checking (it can _be_
simpler because while these things are declared as
Py_ssize_t, then should in fact never be negative).
Objects/unicodeobject.c