Remove unused code

This commit is contained in:
ines 2017-03-12 13:48:40 +01:00
parent 1da29a7146
commit f24f9b4b7b
1 changed files with 0 additions and 24 deletions

View File

@ -159,27 +159,3 @@ cpdef unicode word_shape(unicode string):
if seq < 4: if seq < 4:
shape.append(shape_char) shape.append(shape_char)
return ''.join(shape) return ''.join(shape)
# Exceptions --- do not convert these
_uk_us_except = set([
'our',
'ours',
'four',
'fours',
'your',
'yours',
'hour',
'hours',
'course',
'rise',
])
def uk_to_usa(unicode string):
if not string.islower():
return string
if string in _uk_us_except:
return string
our = re.compile(r'ours?$')
string = our.sub('or', string)
return string