Lines Matching refs:spelling
33 def get_cursor(source, spelling):
37 spelling within a source. The first argument can be either a
50 if cursor.spelling == spelling:
54 result = get_cursor(cursor, spelling)
60 def get_cursors(source, spelling):
61 """Obtain all cursors from a source object with a specific spelling.
64 spelling within a source. The first argument can be either a
78 if cursor.spelling == spelling:
82 cursors.extend(get_cursors(cursor, spelling))