/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/cpython3/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:
|
/external/python/cpython2/Lib/lib-tk/test/test_ttk/ |
D | support.py | 54 import _tkinter 55 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) 101 if isinstance(actual, _tkinter.Tcl_Obj):
|
/external/python/cpython3/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):
|
/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 …]
|
/external/python/cpython3/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 | 16 from _tkinter import TclError
|
D | test_tix.py | 12 _tkinter = import_helper.import_module('_tkinter') variable
|
D | pythoninfo.py | 393 import _tkinter 398 copy_attributes(info_add, _tkinter, 'tkinter.%s', attributes)
|
/external/python/cpython2/Doc/library/ |
D | tk.rst | 1 .. _tkinter: 22 classes. In addition, the internal module :mod:`_tkinter` provides a threadsafe
|
/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 | pythoninfo.py | 306 import _tkinter 311 copy_attributes(info_add, _tkinter, 'tkinter.%s', attributes)
|
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/oss-fuzz/projects/django/ |
D | build.sh | 67 rm $CPYTHON_INSTALL_PATH/lib/python3.8/lib-dynload/_tkinter*.so
|
/external/python/cpython2/Demo/tix/ |
D | INSTALL.txt | 38 _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
|
/external/python/cpython3/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 …]
|
/external/python/cpython3/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
|
/external/python/cpython3/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 …]
|
/external/python/cpython2/PC/ |
D | dllbase_nt.txt | 20 - _tkinter 1e190000 - 1e1A0000
|