Home | History | Annotate | Download | only in python2.7

Lines Matching refs:wordmap

1674 def _match_abbrev(s, wordmap):
1675 """_match_abbrev(s : string, wordmap : {string : Option}) -> string
1677 Return the string key in 'wordmap' for which 's' is an unambiguous
1682 if s in wordmap:
1686 possibilities = [word for word in wordmap.keys()