Home
last modified time | relevance | path

Searched refs:cnfs (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Lib/tkinter/
D__init__.py96 def _cnfmerge(cnfs): argument
98 if isinstance(cnfs, dict):
99 return cnfs
100 elif isinstance(cnfs, (type(None), str)):
101 return cnfs
104 for c in _flatten(cnfs):
/external/python/cpython2/Lib/lib-tk/
DTkinter.py109 def _cnfmerge(cnfs): argument
111 if type(cnfs) is DictionaryType:
112 return cnfs
113 elif type(cnfs) in (NoneType, StringType):
114 return cnfs
117 for c in _flatten(cnfs):