- 23 Şub, 2008 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 04 Haz, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 26 May, 2006 1 kayıt (commit)
-
-
Jack Diederich yazdı
-
- 31 Mar, 2006 1 kayıt (commit)
-
-
Walter Dörwald yazdı
regenerated codec should survive reindent.py unchanged.
-
- 27 Mar, 2006 1 kayıt (commit)
-
-
Walter Dörwald yazdı
-
- 26 Mar, 2006 1 kayıt (commit)
-
-
Hye-Shik Chang yazdı
(reviewed by Walter Dörwald)
-
- 15 Mar, 2006 1 kayıt (commit)
-
-
Walter Dörwald yazdı
of tuple) that provides incremental decoders and encoders (a way to use stateful codecs without the stream API). Functions codecs.getincrementaldecoder() and codecs.getincrementalencoder() have been added.
-
- 11 Mar, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 10 Mar, 2006 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 09 Mar, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 25 Ara, 2005 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 25 Eki, 2005 3 kayıt (commit)
-
-
Marc-André Lemburg yazdı
-
Marc-André Lemburg yazdı
codecs.
-
Marc-André Lemburg yazdı
Only include the decoding map if no table can be generated.
-
- 21 Eki, 2005 2 kayıt (commit)
-
-
Marc-André Lemburg yazdı
list all installed codecs.
-
Marc-André Lemburg yazdı
Added new support for decoding tables. Cleaned up the implementation a bit.
-
- 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
-
- 18 Tem, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 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)
-
- 19 May, 2004 1 kayıt (commit)
-
-
Armin Rigo yazdı
-
- 18 Nis, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 25 Kas, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 24 Kas, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Include all First/Last blocks.
-
- 23 Kas, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 18 Eki, 2002 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 11 Eyl, 2002 1 kayıt (commit)
-
-
http://www.python.org/sf/572113Walter Dörwald yazdı
(with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining.
-
- 21 Ock, 2001 3 kayıt (commit)
-
-
Fredrik Lundh yazdı
to build *all* tables in makeunicodedata.py.
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
-
- 03 Kas, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
ranges) -- but thanks to the 2.0 compression scheme, this doesn't add a single byte to the resulting binaries (!) Closes bug #117524
-
- 26 Eki, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
augmented print statement instead.
-
- 25 Eyl, 2000 5 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
- added decimal digit and digit properties to the unidb tables
-
Fredrik Lundh yazdı
- use unidb compression for the unicodectype module. smaller, faster, and slightly more portable... - also mention the unicode directory in Tools/README
-
Fredrik Lundh yazdı
- fixed attributions - moved decomposition data to a separate table, in preparation for step 3 (which won't happen before 2.0 final, promise!) - use relative paths in the generator script I have a lot more stuff in the works for 2.1, but let's leave that for another day...
-
Tim Peters yazdı
a bit, sped it a lot primarily by removing the unused assumption that None was a legit bin entry (the function doesn't really need to assume that there's anything special about 0), added an optional "trace" argument, and in __debug__ mode added exhaustive verification that the decomposition is both correct and doesn't overstep any array bounds (which wasn't obvious to me from staring at the generated C code -- now I feel safe!). Did not commit a new unicodedata_db.h, as the one produced by this version is identical to the one already checked in.
-
- 24 Eyl, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
- use unidb compression for the unicodedata module. on Windows, the new unidatabase module is 120k, down from nearly 600k.
-