Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython2/Lib/lib-tk/
DTkinter.py230 _tclCommands = None variable in Variable
261 if self._tclCommands is not None:
262 for name in self._tclCommands:
265 self._tclCommands = None
295 if self._tclCommands is None:
296 self._tclCommands = []
297 self._tclCommands.append(cbname)
315 self._tclCommands.remove(cbname)
439 _tclCommands = None variable in Misc
445 if self._tclCommands is not None:
[all …]
/aosp_15_r20/external/python/cpython3/Lib/tkinter/
D__init__.py374 _tclCommands = None variable in Variable
412 if self._tclCommands is not None:
413 for name in self._tclCommands:
416 self._tclCommands = None
444 if self._tclCommands is None:
445 self._tclCommands = []
446 self._tclCommands.append(cbname)
479 self._tclCommands.remove(cbname)
526 self._tclCommands.remove(cbname)
677 _tclCommands = None variable in Misc
[all …]
/aosp_15_r20/external/python/cpython2/Lib/lib-tk/test/test_ttk/
Dtest_widgets.py1376 commands = self.tv.master._tclCommands
1378 self.assertEqual(commands, self.tv.master._tclCommands)
/aosp_15_r20/external/python/cpython3/Lib/tkinter/test/test_ttk/
Dtest_widgets.py1551 commands = self.tv.master._tclCommands
1553 self.assertEqual(commands, self.tv.master._tclCommands)