Home
last modified time | relevance | path

Searched refs:get_close_matches (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Doc/library/
Ddifflib.rst191 .. function:: get_close_matches(word, possibilities, n=3, cutoff=0.6)
206 >>> get_close_matches('appel', ['ape', 'apple', 'peach', 'puppy'])
209 >>> get_close_matches('wheel', keyword.kwlist)
211 >>> get_close_matches('pineapple', keyword.kwlist)
213 >>> get_close_matches('accept', keyword.kwlist)
613 * The :func:`get_close_matches` function in this module which shows how
/external/python/cpython2/Doc/library/
Ddifflib.rst186 .. function:: get_close_matches(word, possibilities[, n][, cutoff])
201 >>> get_close_matches('appel', ['ape', 'apple', 'peach', 'puppy'])
204 >>> get_close_matches('wheel', keyword.kwlist)
206 >>> get_close_matches('apple', keyword.kwlist)
208 >>> get_close_matches('accept', keyword.kwlist)
592 * The :func:`get_close_matches` function in this module which shows how
/external/python/cpython2/Lib/
Ddifflib.py701 def get_close_matches(word, possibilities, n=3, cutoff=0.6): function
/external/python/cpython3/Lib/
Ddifflib.py688 def get_close_matches(word, possibilities, n=3, cutoff=0.6): function