Skip to content

Commit

Permalink
When using diacritics, replace 'v' with 'ü'
Browse files Browse the repository at this point in the history
This helps with words like 女, for which we previously output 'nv̌'. Now
we return the more conventional 'nǚ'.
  • Loading branch information
copumpkin committed Jan 8, 2017
1 parent f9cac59 commit d45fc63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions pinyin/pinyin.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def _pinyin_generator(chars, format):
vowels = itertools.chain((c for c in pinyin if c in "aeo"),
(c for c in pinyin if c in "iuv"))
vowel = pinyin.index(next(vowels)) + 1
pinyin = pinyin.replace('v', 'ü')
pinyin = pinyin[:vowel] + tonemarks[tone] + pinyin[vowel:]
else:
error = "Format must be one of: numerical/diacritical/strip"
Expand Down
4 changes: 2 additions & 2 deletions test_pinyin.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_get(self):

self.assertEqual(pinyin.get('你好'), u('nǐhǎo'))
self.assertEqual(pinyin.get('叶'), u('yè'))
self.assertEqual(pinyin.get('少女'), u('shǎonv̌'))
self.assertEqual(pinyin.get('少女'), u('shǎonǚ'))

def test_get_with_delimiter(self):
self.assertEqual(pinyin.get('你好', " "), u('nǐ hǎo'))
Expand All @@ -47,7 +47,7 @@ def test_correct_diacritical(self):
self.assertEqual(pinyin.get("小"), u("xiǎo"))
self.assertEqual(pinyin.get("绝"), u("jué"))
self.assertEqual(pinyin.get("被"), u("bèi"))
self.assertEqual(pinyin.get("略"), u("lvè"))
self.assertEqual(pinyin.get("略"), u("lüè"))


if __name__ == '__main__':
Expand Down

0 comments on commit d45fc63

Please sign in to comment.