cpython/Doc/api
Hye-Shik Chang e9ddfbb412 SF #989185: Drop unicode.iswide() and unicode.width() and add
unicodedata.east_asian_width().  You can still implement your own
simple width() function using it like this:
    def width(u):
        w = 0
        for c in unicodedata.normalize('NFC', u):
            cwidth = unicodedata.east_asian_width(c)
            if cwidth in ('W', 'F'): w += 2
            else: w += 1
        return w
2004-08-04 07:38:35 +00:00
..
.cvsignore
abstract.tex [Bug #984017] Incorrect prototype, fixed by Timothy Stranex 2004-07-07 13:07:47 +00:00
api.tex
concrete.tex SF #989185: Drop unicode.iswide() and unicode.width() and add 2004-08-04 07:38:35 +00:00
exceptions.tex [Bug #948970] Add PyExc_* symbols to index. 2004-06-29 13:52:14 +00:00
init.tex Remove a few elderly sentences 2004-07-10 13:48:54 +00:00
intro.tex Emphasize the requirement that Python.h be included first more strongly. 2004-03-31 07:45:46 +00:00
memory.tex
newtypes.tex Formalize that the Py_VISIT macro requires that the tp_traverse 2004-07-15 04:05:59 +00:00
refcounting.tex Two typo fixes 2004-07-26 19:25:54 +00:00
refcounts.dat Added refcount information for PyObject_GetIter(). 2002-10-04 18:58:58 +00:00
utilities.tex Typo repair. 2004-08-02 04:30:37 +00:00
veryhigh.tex improve the very-high-level API docs (contributed by Jeff Epler) 2004-03-25 15:44:56 +00:00