Current Path: > > opt > alt > python33 > lib64 > python3.3 > idlelib > idle_test >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
README.txt | File | 4594 bytes | September 19 2017 07:32:02. | |
__init__.py | File | 356 bytes | April 17 2024 16:58:17. | |
mock_idle.py | File | 764 bytes | April 17 2024 16:58:17. | |
mock_tk.py | File | 10642 bytes | April 17 2024 16:58:17. | |
test_calltips.py | File | 6332 bytes | April 17 2024 16:58:17. | |
test_config_name.py | File | 2399 bytes | April 17 2024 16:58:17. | |
test_delegator.py | File | 1294 bytes | April 17 2024 16:58:17. | |
test_formatparagraph.py | File | 14301 bytes | April 17 2024 16:58:17. | |
test_grep.py | File | 2671 bytes | April 17 2024 16:58:17. | |
test_idlehistory.py | File | 5465 bytes | April 17 2024 16:58:17. | |
test_pathbrowser.py | File | 344 bytes | April 17 2024 16:58:17. | |
test_rstrip.py | File | 1613 bytes | April 17 2024 16:58:17. | |
test_searchengine.py | File | 11503 bytes | April 17 2024 16:58:17. | |
test_text.py | File | 6760 bytes | April 17 2024 16:58:17. | |
test_warning.py | File | 2752 bytes | April 17 2024 16:58:17. |
'''Mock classes that imitate idlelib modules or classes. Attributes and methods will be added as needed for tests. ''' from idlelib.idle_test.mock_tk import Text class Editor: '''Minimally imitate EditorWindow.EditorWindow class. ''' def __init__(self, flist=None, filename=None, key=None, root=None): self.text = Text() self.undo = UndoDelegator() def get_selection_indices(self): first = self.text.index('1.0') last = self.text.index('end') return first, last class UndoDelegator: '''Minimally imitate UndoDelegator,UndoDelegator class. ''' # A real undo block is only needed for user interaction. def undo_block_start(*args): pass def undo_block_stop(*args): pass
SILENT KILLER Tool