Home
last modified time | relevance | path

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

123

/external/python/cpython2/PC/VC6/
D_tkinter.dsp1 # 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 …]
Dpcbuild.dsw153 Project: "_tkinter"=".\_tkinter.dsp" - Package Owner=<4>
/external/python/cpython2/Demo/tkinter/guido/
Dwish.py3 import _tkinter
6 tk = _tkinter.create(os.environ['DISPLAY'], 'wish', 'Tk', 1)
23 except _tkinter.TclError, msg:
DManPage.py5 from Tkinter import _tkinter
48 self.tk.createfilehandler(fp, _tkinter.READABLE,
/external/python/cpython3/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:
/external/python/cpython2/Lib/lib-tk/test/test_ttk/
Dsupport.py54 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/
Dsupport.py81 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/
DFixTk.py68 import _tkinter
69 ver = str(_tkinter.TCL_VERSION)
DTkinter.py39 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/
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.py16 from _tkinter import TclError
Dtest_tix.py12 _tkinter = import_helper.import_module('_tkinter') variable
Dpythoninfo.py393 import _tkinter
398 copy_attributes(info_add, _tkinter, 'tkinter.%s', attributes)
/external/python/cpython2/Doc/library/
Dtk.rst1 .. _tkinter:
22 classes. In addition, the internal module :mod:`_tkinter` provides a threadsafe
/external/python/cpython2/Demo/tkinter/
DREADME4 Tkinter and _tkinter, how to enable the Python Tk interface, and where
/external/python/cpython2/Lib/test/
Dtest_ttk_guionly.py18 from _tkinter import TclError
Dpythoninfo.py306 import _tkinter
311 copy_attributes(info_add, _tkinter, 'tkinter.%s', attributes)
Dtest_tcl.py9 _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/
Dbuild.sh67 rm $CPYTHON_INSTALL_PATH/lib/python3.8/lib-dynload/_tkinter*.so
/external/python/cpython2/Demo/tix/
DINSTALL.txt38 _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
/external/python/cpython3/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 …]
/external/python/cpython3/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
/external/python/cpython3/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 …]
/external/python/cpython2/PC/
Ddllbase_nt.txt20 - _tkinter 1e190000 - 1e1A0000

123