- 27 May, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 20 Eki, 2005 1 kayıt (commit)
-
-
Marc-André Lemburg yazdı
type lookups: whitespace and linebreak. These lookup tables are from the Python 1.6 version with the addition of the 205F code point which was added as whitespace code point to Unicode since then.
-
- 04 Agu, 2004 1 kayıt (commit)
-
-
Hye-Shik Chang yazdı
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
-
- 02 Haz, 2004 1 kayıt (commit)
-
-
Hye-Shik Chang yazdı
iswide() for east asian width manipulation. (Inspired by David Goodger, Reviewed by Martin v. Loewis) - Move _PyUnicode_TypeRecord.flags to the end of the struct so that no padding is added for UCS-4 builds. (Suggested by Martin v. Loewis)
-
- 29 Ara, 2003 1 kayıt (commit)
-
-
Hye-Shik Chang yazdı
-
- 18 Eki, 2002 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 27 Haz, 2001 3 kayıt (commit)
-
-
Fredrik Lundh yazdı
predicates
-
Fredrik Lundh yazdı
tests.
-
Martin v. Löwis yazdı
Implement sys.maxunicode. Explicitly wrap around upper/lower computations for wide Py_UNICODE. When decoding large characters with UTF-8, represent expected test results using the \U notation.
-
- 26 Haz, 2001 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
sizeof(int)
-
- 25 Eyl, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
- use unidb compression for the unicodectype module. smaller, faster, and slightly more portable...
-
- 12 Agu, 2000 1 kayıt (commit)
-
-
Trent Mick yazdı
huge switch statement broken up. This will probably not be necessary when the Win64 compiler matures.
-
- 03 Agu, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This is a notice without a date, which apparently is not a claim to copyright but only advice to the reader. IANAL. :-)
-
- 06 Tem, 2000 1 kayıt (commit)
-
-
Jack Jansen yazdı
into 1000-case smaller ones.
-
- 05 Tem, 2000 1 kayıt (commit)
-
-
Marc-André Lemburg yazdı
i.e the ones with category 'Ll','Lu','Lt','Lo','Lm'.
-
- 11 Nis, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Added a few missing whitespace Unicode char mappings. Thanks to Brian Hooper.
-
- 10 Mar, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-