__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import os
import sys
import unittest
from test import test_support
from Tkinter import Tcl, TclError
test_support.requires('gui')
class TkLoadTest(unittest.TestCase):
@unittest.skipIf('DISPLAY' not in os.environ, 'No $DISPLAY set.')
def testLoadTk(self):
tcl = Tcl()
self.assertRaises(TclError,tcl.winfo_geometry)
tcl.loadtk()
self.assertEqual('1x1+0+0', tcl.winfo_geometry())
tcl.destroy()
def testLoadTkFailure(self):
old_display = None
if sys.platform.startswith(('win', 'darwin', 'cygwin')):
# no failure possible on windows?
# XXX Maybe on tk older than 8.4.13 it would be possible,
# see tkinter.h.
return
with test_support.EnvironmentVarGuard() as env:
if 'DISPLAY' in os.environ:
del env['DISPLAY']
# on some platforms, deleting environment variables
# doesn't actually carry through to the process level
# because they don't support unsetenv
# If that's the case, abort.
display = os.popen('echo $DISPLAY').read().strip()
if display:
return
tcl = Tcl()
self.assertRaises(TclError, tcl.winfo_geometry)
self.assertRaises(TclError, tcl.loadtk)
tests_gui = (TkLoadTest, )
if __name__ == "__main__":
test_support.run_unittest(*tests_gui)
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __init__.py | File | 0 B | 0644 |
|
| __init__.pyc | File | 144 B | 0644 |
|
| __init__.pyo | File | 144 B | 0644 |
|
| test_font.py | File | 3.97 KB | 0644 |
|
| test_font.pyc | File | 4.93 KB | 0644 |
|
| test_font.pyo | File | 4.93 KB | 0644 |
|
| test_geometry_managers.py | File | 39.62 KB | 0644 |
|
| test_geometry_managers.pyc | File | 40.21 KB | 0644 |
|
| test_geometry_managers.pyo | File | 40.21 KB | 0644 |
|
| test_images.py | File | 13.04 KB | 0644 |
|
| test_images.pyc | File | 15.54 KB | 0644 |
|
| test_images.pyo | File | 15.54 KB | 0644 |
|
| test_loadtk.py | File | 1.42 KB | 0644 |
|
| test_loadtk.pyc | File | 1.7 KB | 0644 |
|
| test_loadtk.pyo | File | 1.7 KB | 0644 |
|
| test_misc.py | File | 4.15 KB | 0644 |
|
| test_misc.pyc | File | 3.75 KB | 0644 |
|
| test_misc.pyo | File | 3.75 KB | 0644 |
|
| test_text.py | File | 1.43 KB | 0644 |
|
| test_text.pyc | File | 1.8 KB | 0644 |
|
| test_text.pyo | File | 1.8 KB | 0644 |
|
| test_variables.py | File | 8.19 KB | 0644 |
|
| test_variables.pyc | File | 11.15 KB | 0644 |
|
| test_variables.pyo | File | 11.15 KB | 0644 |
|
| test_widgets.py | File | 46.13 KB | 0644 |
|
| test_widgets.pyc | File | 61.02 KB | 0644 |
|
| test_widgets.pyo | File | 61.02 KB | 0644 |
|