Searched refs:_tkinter (Results 1 – 25 of 32) sorted by relevance
12
/third_party/python/Doc/library/ |
D | turtle.rst | 253 :skipif: _tkinter is None 280 :skipif: _tkinter is None 299 :skipif: _tkinter is None 305 :skipif: _tkinter is None 324 :skipif: _tkinter is None 330 :skipif: _tkinter is None 353 :skipif: _tkinter is None 359 :skipif: _tkinter is None 383 :skipif: _tkinter is None 389 :skipif: _tkinter is None [all …]
|
D | tk.rst | 1 .. _tkinter:
|
D | tkinter.rst | 24 threaded. See the source code for the :mod:`_tkinter` module 110 Tcl command string to an internal :mod:`_tkinter` binary module, which then 179 :mod:`_tkinter` 504 .. _tkinter-setting-options: 937 .. _tkinter-file-handlers:
|
/third_party/python/Lib/tkinter/test/ |
D | support.py | 81 import _tkinter 82 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) 128 if isinstance(actual, _tkinter.Tcl_Obj):
|
/third_party/python/Lib/test/ |
D | test_tcl.py | 13 _tkinter = import_helper.import_module('_tkinter') variable 17 from _tkinter import TclError 24 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) 47 self.assertRaises(TypeError, _tkinter._flatten, True) 49 self.assertRaises(TypeError, _tkinter._flatten, {}) 52 self.assertRaises(TypeError, _tkinter._flatten, 'string') 53 self.assertRaises(TypeError, _tkinter._flatten, {'set'}) 747 support.check_disallow_instantiation(self, _tkinter.Tcl_Obj) 748 support.check_disallow_instantiation(self, _tkinter.TkttType) 749 support.check_disallow_instantiation(self, _tkinter.TkappType)
|
D | test_ttk_guionly.py | 12 from _tkinter import TclError
|
D | test_tix.py | 7 _tkinter = import_helper.import_module('_tkinter') variable
|
D | pythoninfo.py | 393 import _tkinter 398 copy_attributes(info_add, _tkinter, 'tkinter.%s', attributes)
|
/third_party/python/Tools/c-analyzer/cpython/ |
D | ignored.tsv | 669 Modules/_tkinter.c - Tktt_methods - 670 Modules/_tkinter.c - Tkapp_methods - 671 Modules/_tkinter.c - moduleMethods - 1030 Modules/_tkinter.c - PyTclObject_getsetlist - 1123 Modules/_tkinter.c - PyTclObject_Type_slots - 1124 Modules/_tkinter.c - Tktt_Type_slots - 1125 Modules/_tkinter.c - Tkapp_Type_slots - 1173 Modules/_tkinter.c - PyTclObject_Type_spec - 1174 Modules/_tkinter.c - Tktt_Type_spec - 1175 Modules/_tkinter.c - Tkapp_Type_spec - [all …]
|
/third_party/python/Modules/ |
D | Setup | 270 # The _tkinter module. 272 # The command for _tkinter is long and site specific. Please 282 # _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \ 376 #_sqlite3 _tkinter _curses pyexpat
|
/third_party/python/Lib/tkinter/ |
D | __init__.py | 37 import _tkinter # If this fails your Python may not be configured for Tk 38 TclError = _tkinter.TclError 44 TkVersion = float(_tkinter.TK_VERSION) 45 TclVersion = float(_tkinter.TCL_VERSION) 47 READABLE = _tkinter.READABLE 48 WRITABLE = _tkinter.WRITABLE 49 EXCEPTION = _tkinter.EXCEPTION 97 try: _flatten = _tkinter._flatten 119 try: _cnfmerge = _tkinter._cnfmerge 1771 if isinstance(value, (str, _tkinter.Tcl_Obj)): [all …]
|
D | font.py | 87 raise tkinter._tkinter.TclError(
|
/third_party/python/PCbuild/ |
D | readme.txt | 151 _tkinter 194 _tkinter 286 * tcltk (used by _tkinter, tcl, tk and tix projects)
|
/third_party/python/Lib/idlelib/idle_test/ |
D | mock_tk.py | 7 from _tkinter import TclError
|
D | test_text.py | 7 from _tkinter import TclError
|
/third_party/python/Tools/freeze/ |
D | README | 131 for any Python files such as _tkinter.pyd you may need. 168 _tkinter.pyd, these will not be incorporated in the frozen program. 180 such as _tkinter.pyd there.
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a2.rst | 94 Added the __module__ attribute to _tkinter classes.
|
D | 3.10.0rc1.rst | 337 Fix memory leak in :func:`_tkinter._flatten` if it is called with a sequence
|
D | 3.5.0a4.rst | 348 _tkinter.tkapp.getboolean() now supports Tcl_Obj and always returns bool.
|
D | 3.5.0b1.rst | 245 environment on Windows with a private function in the ``_tkinter`` module
|
D | 3.10.0rc2.rst | 578 _tkinter.c,
|
D | 3.9.0b1.rst | 803 When building Python on macOS from source, ``_tkinter`` now links with
|
/third_party/python/Doc/c-api/ |
D | veryhigh.rst | 165 event loops, as done in the :file:`Modules/_tkinter.c` in the
|
/third_party/python/Doc/whatsnew/ |
D | 2.3.rst | 1572 * Calling Tcl methods through :mod:`_tkinter` no longer returns only strings. 1574 Python equivalent, if one exists, or wrapped with a :class:`_tkinter.Tcl_Obj` 1578 When using :mod:`_tkinter` through the :mod:`Tkinter` module (as most Tkinter 2034 * Calling Tcl methods through :mod:`_tkinter` no longer returns only strings. 2036 Python equivalent, if one exists, or wrapped with a :class:`_tkinter.Tcl_Obj`
|
D | 3.9.rst | 881 * Deprecated the ``split()`` method of :class:`_tkinter.TkappType` in 1229 * When building Python on macOS from source, ``_tkinter`` now links with
|
12