Changeset 106
- Timestamp:
- 11/01/07 10:36:55 (14 months ago)
- Files:
-
- 1 modified
-
hacks/trunk/automatic_text.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hacks/trunk/automatic_text.py
r105 r106 190 190 191 191 def map_digit_to_name(digit): 192 if digit in [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9']:192 if digit in [str(x) for x in string.digits]: 193 193 return DIGITS[int(digit)] 194 194 else: