diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-07-27 18:44:10 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-07-27 18:44:10 (GMT) |
commit | 9ad7a60f623cdc9f4a527e3a1570d3266df46205 (patch) | |
tree | 0a0d41ffda25a395cdef762c85067dbd45c0f1ff | |
parent | 623005e94a3867c4c1b58969c03ee1ce91f82026 (diff) | |
download | cpython-9ad7a60f623cdc9f4a527e3a1570d3266df46205.zip cpython-9ad7a60f623cdc9f4a527e3a1570d3266df46205.tar.gz cpython-9ad7a60f623cdc9f4a527e3a1570d3266df46205.tar.bz2 |
Repair typos
-rw-r--r-- | Doc/whatsnew/whatsnew20.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/whatsnew20.tex b/Doc/whatsnew/whatsnew20.tex index 3eea27a..473804c 100644 --- a/Doc/whatsnew/whatsnew20.tex +++ b/Doc/whatsnew/whatsnew20.tex @@ -216,7 +216,7 @@ A new module, \module{unicodedata}, provides an interface to Unicode character properties. For example, \code{unicodedata.category(u'A')} returns the 2-character string 'Lu', the 'L' denoting it's a letter, and 'u' meaning that it's uppercase. -\code{u.bidirectional(u'\e x0660')} returns 'AN', meaning that U+0660 is +\code{unicodedata.bidirectional(u'\e u0660')} returns 'AN', meaning that U+0660 is an Arabic number. The \module{codecs} module contains functions to look up existing encodings |