diff options
author | Peng Wu <alexepico@gmail.com> | 2012-01-14 10:29:32 +0800 |
---|---|---|
committer | Peng Wu <alexepico@gmail.com> | 2012-01-14 10:31:02 +0800 |
commit | e0c9f028a1580816870e028c5337b2dce0b495ac (patch) | |
tree | c791cfbb26b613fb34e32e1e49a5f9149c114f7e /scripts | |
parent | fc5f2499c33c71df6c828a6527685f056a53d424 (diff) | |
download | libpinyin-e0c9f028a1580816870e028c5337b2dce0b495ac.tar.gz libpinyin-e0c9f028a1580816870e028c5337b2dce0b495ac.tar.xz libpinyin-e0c9f028a1580816870e028c5337b2dce0b495ac.zip |
fixes specialtable.py
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/specialtable.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/specialtable.py b/scripts/specialtable.py index 89fa097..75b27a1 100644 --- a/scripts/specialtable.py +++ b/scripts/specialtable.py @@ -98,10 +98,12 @@ def gen_all_resplit(): new_pinyin_key = pinyin_key[-1] + yun if new_pinyin_key in pinyin_list: yield pinyin_key, yun, pinyin_key[:-1], new_pinyin_key +''' elif pinyin_key[-1] in ["e"]: #check first new pinyin key if pinyin_key[:-1] in pinyin_list: yield pinyin_key, "r", pinyin_key[:-1], "er" +''' def filter_resplit(): |