Home
last modified time | relevance | path

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

/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):
/external/python/cpython3/Lib/tkinter/
D__init__.py101 def _cnfmerge(cnfs): argument
103 if isinstance(cnfs, dict):
104 return cnfs
105 elif isinstance(cnfs, (type(None), str)):
106 return cnfs
109 for c in _flatten(cnfs):