- 21 Şub, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 11 Eki, 2010 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
makeunicodedata.py: download all data files from unicode.org, switch to extracting Unihan data from zip file. Read linebreakprops and derivednormalizationprops even for old versions, even though they are not used in delta records. test:unicode.py: U+11000 is now assigned, use U+14000 instead.
-
- 19 Mar, 2010 2 kayıt (commit)
-
-
Florent Xicluna yazdı
Merged revision 79059 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r79059 | florent.xicluna | 2010-03-18 22:50:06 +0100 (jeu, 18 mar 2010) | 2 lines Issue #8024: Update the Unicode database to 5.2 ........
-
Florent Xicluna yazdı
Revert Unicode UCD 5.2 upgrade in 3.x. It broke repr() for unicode objects, and gave failures in test_bigmem. Revert 79062, 79065 and 79083.
-
- 18 Mar, 2010 1 kayıt (commit)
-
-
Florent Xicluna yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79059 | florent.xicluna | 2010-03-18 22:50:06 +0100 (jeu, 18 mar 2010) | 2 lines Issue #8024: Update the Unicode database to 5.2 ........
-
- 06 Eki, 2009 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75272 | amaury.forgeotdarc | 2009-10-06 21:56:32 +0200 (mar., 06 oct. 2009) | 5 lines #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, _PyUnicode_IsLinebreak and _PyUnicode_IsWhitespace. It now also parses the Unihan.txt for numeric values. ........ r75273 | amaury.forgeotdarc | 2009-10-06 22:02:09 +0200 (mar., 06 oct. 2009) | 2 lines Add Anders Chrigstrom to Misc/ACKS for his work on unicodedata. ........
-
- 27 Nis, 2009 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72054 | antoine.pitrou | 2009-04-27 23:53:26 +0200 (lun., 27 avril 2009) | 5 lines Issue #1734234: Massively speedup `unicodedata.normalize()` when the string is already in normalized form, by performing a quick check beforehand. Original patch by Rauli Ruohonen. ........
-
- 10 Eyl, 2008 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66362 | martin.v.loewis | 2008-09-10 15:38:12 +0200 (Mi, 10 Sep 2008) | 3 lines Issue #3811: The Unicode database was updated to 5.1. Reviewed by Fredrik Lundh and Marc-Andre Lemburg. ........
-
- 13 Haz, 2008 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64226 | martin.v.loewis | 2008-06-13 09:47:47 +0200 (Fr, 13 Jun 2008) | 2 lines Make more symbols static. ........
-
- 09 Mar, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 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)
-
- 25 Kas, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 24 Kas, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 23 Kas, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 18 Eki, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 21 Ock, 2001 2 kayıt (commit)
-
-
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
-
- 25 Eyl, 2000 1 kayıt (commit)
-
-
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...
-
- 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.
-