Home
last modified time | relevance | path

Searched refs:_tkinter (Results 1 – 25 of 32) sorted by relevance

12

/third_party/python/Doc/library/
Dturtle.rst253 :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 …]
Dtk.rst1 .. _tkinter:
Dtkinter.rst24 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/
Dsupport.py81 import _tkinter
82 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.')))
128 if isinstance(actual, _tkinter.Tcl_Obj):
/third_party/python/Lib/test/
Dtest_tcl.py13 _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)
Dtest_ttk_guionly.py12 from _tkinter import TclError
Dtest_tix.py7 _tkinter = import_helper.import_module('_tkinter') variable
Dpythoninfo.py393 import _tkinter
398 copy_attributes(info_add, _tkinter, 'tkinter.%s', attributes)
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv669 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/
DSetup270 # 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__.py37 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 …]
Dfont.py87 raise tkinter._tkinter.TclError(
/third_party/python/PCbuild/
Dreadme.txt151 _tkinter
194 _tkinter
286 * tcltk (used by _tkinter, tcl, tk and tix projects)
/third_party/python/Lib/idlelib/idle_test/
Dmock_tk.py7 from _tkinter import TclError
Dtest_text.py7 from _tkinter import TclError
/third_party/python/Tools/freeze/
DREADME131 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/
D3.5.0a2.rst94 Added the __module__ attribute to _tkinter classes.
D3.10.0rc1.rst337 Fix memory leak in :func:`_tkinter._flatten` if it is called with a sequence
D3.5.0a4.rst348 _tkinter.tkapp.getboolean() now supports Tcl_Obj and always returns bool.
D3.5.0b1.rst245 environment on Windows with a private function in the ``_tkinter`` module
D3.10.0rc2.rst578 _tkinter.c,
D3.9.0b1.rst803 When building Python on macOS from source, ``_tkinter`` now links with
/third_party/python/Doc/c-api/
Dveryhigh.rst165 event loops, as done in the :file:`Modules/_tkinter.c` in the
/third_party/python/Doc/whatsnew/
D2.3.rst1572 * 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`
D3.9.rst881 * Deprecated the ``split()`` method of :class:`_tkinter.TkappType` in
1229 * When building Python on macOS from source, ``_tkinter`` now links with

12