[Python-checkins] CVS: python/dist/src/Tools/unicode makeunicodedata.py,1.5,1.6

Fredrik Lundh python-dev@python.org
Mon, 25 Sep 2000 16:03:37 -0700


Update of /cvsroot/python/python/dist/src/Tools/unicode
In directory slayer.i.sourceforge.net:/tmp/cvs-serv2294/Tools/unicode

Modified Files:
	makeunicodedata.py 
Log Message:


- don't set the titlecase flag for uppercase letters (sorry, tim)

Index: makeunicodedata.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/unicode/makeunicodedata.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** makeunicodedata.py	2000/09/25 21:01:56	1.5
--- makeunicodedata.py	2000/09/25 23:03:34	1.6
***************
*** 9,13 ****
  # 2000-09-25 fl   merged tim's splitbin fixes, separate decomposition table
  # 2000-09-25 fl   added character type table
! # 2000-09-26 fl   added LINEBREAK flags
  #
  # written by Fredrik Lundh (fredrik@pythonware.com), September 2000
--- 9,13 ----
  # 2000-09-25 fl   merged tim's splitbin fixes, separate decomposition table
  # 2000-09-25 fl   added character type table
! # 2000-09-26 fl   added LINEBREAK, DECIMAL, and DIGIT flags/fields
  #
  # written by Fredrik Lundh (fredrik@pythonware.com), September 2000
***************
*** 167,171 ****
              if category == "Zs" or bidirectional in ("WS", "B", "S"):
                  flags |= SPACE_MASK
!             if category in ["Lt", "Lu"]:
                  flags |= TITLE_MASK
              if category == "Lu":
--- 167,171 ----
              if category == "Zs" or bidirectional in ("WS", "B", "S"):
                  flags |= SPACE_MASK
!             if category == "Lt":
                  flags |= TITLE_MASK
              if category == "Lu":