Changeset 105
- Timestamp:
- 11/01/07 10:24:19 (14 months ago)
- Files:
-
- 1 modified
-
hacks/trunk/automatic_text.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hacks/trunk/automatic_text.py
r101 r105 26 26 (working!) copy of FontStudio with this neat feature. 27 27 """ 28 29 import string 28 30 29 31 from FL import * … … 38 40 ] 39 41 40 UPPERCASE = "A B C D E F G H I J K L M N O P Q R S T U V W X Y Z".split()41 LOWERCASE = "a b c d e f g h i j k l m n o p q r s t u v w x y z".split()42 UPPERCASE = [x for x in string.uppercase] 43 LOWERCASE = [x for x in string.lowercase] 42 44 DIGITS = "zero one two three four five six seven eight nine".split() 43 45