Linux eyewebsolution.dnshostserver.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Apache
: 185.131.55.234 | : 216.73.216.138
676 Domain
5.6.40
omxrelocation
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib64 /
python2.7 /
lib-tk /
test /
test_tkinter /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
0
B
-rw-r--r--
__init__.pyc
144
B
-rw-r--r--
__init__.pyo
144
B
-rw-r--r--
test_loadtk.py
1.42
KB
-rw-r--r--
test_loadtk.pyc
1.71
KB
-rw-r--r--
test_loadtk.pyo
1.71
KB
-rw-r--r--
test_text.py
1.11
KB
-rw-r--r--
test_text.pyc
1.59
KB
-rw-r--r--
test_text.pyo
1.59
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test_text.py
import unittest import Tkinter from test.test_support import requires, run_unittest from ttk import setup_master requires('gui') class TextTest(unittest.TestCase): def setUp(self): self.root = setup_master() self.text = Tkinter.Text(self.root) def tearDown(self): self.text.destroy() def test_search(self): text = self.text # pattern and index are obligatory arguments. self.assertRaises(Tkinter.TclError, text.search, None, '1.0') self.assertRaises(Tkinter.TclError, text.search, 'a', None) self.assertRaises(Tkinter.TclError, text.search, None, None) # Invalid text index. self.assertRaises(Tkinter.TclError, text.search, '', 0) # Check if we are getting the indices as strings -- you are likely # to get Tcl_Obj under Tk 8.5 if Tkinter doesn't convert it. text.insert('1.0', 'hi-test') self.assertEqual(text.search('-test', '1.0', 'end'), '1.2') self.assertEqual(text.search('test', '1.0', 'end'), '1.3') tests_gui = (TextTest, ) if __name__ == "__main__": run_unittest(*tests_gui)
Close