Searched refs:_tkinter (Results 1 – 25 of 57) sorted by relevance
123
/external/python/cpython2/PC/VC6/ |
D | _tkinter.dsp | 1 # Microsoft Developer Studio Project File - Name="_tkinter" - Package Owner=<4> 7 CFG=_tkinter - Win32 Release 11 !MESSAGE NMAKE /f "_tkinter.mak". 16 !MESSAGE NMAKE /f "_tkinter.mak" CFG="_tkinter - Win32 Release" 20 !MESSAGE "_tkinter - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") 21 !MESSAGE "_tkinter - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") 26 # PROP Scc_ProjName "_tkinter" 32 !IF "$(CFG)" == "_tkinter - Win32 Debug" 42 # PROP Intermediate_Dir "x86-temp-debug\_tkinter" 60 !ELSEIF "$(CFG)" == "_tkinter - Win32 Release" [all …]
|
D | pcbuild.dsw | 153 Project: "_tkinter"=".\_tkinter.dsp" - Package Owner=<4>
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | wish.py | 3 import _tkinter 6 tk = _tkinter.create(os.environ['DISPLAY'], 'wish', 'Tk', 1) 23 except _tkinter.TclError, msg:
|
D | ManPage.py | 5 from Tkinter import _tkinter 48 self.tk.createfilehandler(fp, _tkinter.READABLE,
|
/external/python/cpython2/Lib/lib-tk/test/test_ttk/ |
D | support.py | 53 import _tkinter 54 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) 89 if isinstance(actual, _tkinter.Tcl_Obj):
|
/external/python/cpython3/Lib/tkinter/test/ |
D | support.py | 53 import _tkinter 54 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) 89 if isinstance(actual, _tkinter.Tcl_Obj):
|
/external/python/cpython2/Lib/lib-tk/ |
D | FixTk.py | 68 import _tkinter 69 ver = str(_tkinter.TCL_VERSION)
|
D | Tkinter.py | 39 import _tkinter # If this fails your Python may not be configured for Tk 40 tkinter = _tkinter # b/w compat for export 41 TclError = _tkinter.TclError 48 TkVersion = float(_tkinter.TK_VERSION) 49 TclVersion = float(_tkinter.TCL_VERSION) 51 READABLE = _tkinter.READABLE 52 WRITABLE = _tkinter.WRITABLE 53 EXCEPTION = _tkinter.EXCEPTION 56 try: _tkinter.createfilehandler 57 except AttributeError: _tkinter.createfilehandler = None [all …]
|
D | tkFont.py | 83 … raise Tkinter._tkinter.TclError, "named font %s does not already exist" % (self.name,)
|
/external/python/cpython2/Doc/library/ |
D | tk.rst | 1 .. _tkinter: 22 classes. In addition, the internal module :mod:`_tkinter` provides a threadsafe
|
/external/python/cpython3/Doc/library/ |
D | tk.rst | 1 .. _tkinter: 22 classes. In addition, the internal module :mod:`_tkinter` provides a threadsafe
|
/external/python/cpython3/Lib/test/ |
D | test_tix.py | 6 _tkinter = support.import_module('_tkinter') variable
|
D | test_ttk_guionly.py | 11 from _tkinter import TclError
|
D | test_tcl.py | 9 _tkinter = support.import_module('_tkinter') variable 13 from _tkinter import TclError 20 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) 43 self.assertRaises(TypeError, _tkinter._flatten, True) 653 self.assertRaises(TypeError, _tkinter.Tcl_Obj)
|
/external/python/cpython2/Demo/tkinter/ |
D | README | 4 Tkinter and _tkinter, how to enable the Python Tk interface, and where
|
/external/python/cpython2/Lib/test/ |
D | test_ttk_guionly.py | 18 from _tkinter import TclError
|
D | test_tcl.py | 9 _tkinter = test_support.import_module('_tkinter') variable 13 from _tkinter import TclError 20 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) 43 self.assertRaises(TypeError, _tkinter._flatten, True)
|
/external/python/cpython2/Demo/tix/ |
D | INSTALL.txt | 38 _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
|
/external/python/cpython3/Lib/tkinter/ |
D | __init__.py | 36 import _tkinter # If this fails your Python may not be configured for Tk 37 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 90 try: _flatten = _tkinter._flatten 110 try: _cnfmerge = _tkinter._cnfmerge 1559 if isinstance(value, (str, _tkinter.Tcl_Obj)): [all …]
|
D | font.py | 86 raise tkinter._tkinter.TclError(
|
/external/python/cpython3/Modules/ |
D | Setup.dist | 257 # The _tkinter module. 259 # The command for _tkinter is long and site specific. Please 269 # _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
|
/external/python/cpython2/PC/ |
D | dllbase_nt.txt | 20 - _tkinter 1e190000 - 1e1A0000
|
/external/python/cpython3/PC/ |
D | dllbase_nt.txt | 20 - _tkinter 1e190000 - 1e1A0000
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | mock_tk.py | 88 from _tkinter import TclError
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | mock_tk.py | 88 from _tkinter import TclError
|
123