X7ROOT File Manager
Current Path:
/usr/lib64/python2.7/idlelib/idle_test
usr
/
lib64
/
python2.7
/
idlelib
/
idle_test
/
ðŸ“
..
📄
README.txt
(5.36 KB)
📄
__init__.py
(650 B)
📄
__init__.pyc
(915 B)
📄
__init__.pyo
(915 B)
📄
htest.py
(13.46 KB)
📄
htest.pyc
(12.3 KB)
📄
htest.pyo
(12.3 KB)
📄
mock_idle.py
(1.56 KB)
📄
mock_idle.pyc
(2.81 KB)
📄
mock_idle.pyo
(2.81 KB)
📄
mock_tk.py
(11.3 KB)
📄
mock_tk.pyc
(12.07 KB)
📄
mock_tk.pyo
(12.07 KB)
📄
test_autocomplete.py
(4.81 KB)
📄
test_autocomplete.pyc
(5.72 KB)
📄
test_autocomplete.pyo
(5.72 KB)
📄
test_autoexpand.py
(4.03 KB)
📄
test_autoexpand.pyc
(4.69 KB)
📄
test_autoexpand.pyo
(4.69 KB)
📄
test_calltips.py
(6.97 KB)
📄
test_calltips.pyc
(11.85 KB)
📄
test_calltips.pyo
(11.85 KB)
📄
test_config_name.py
(2.41 KB)
📄
test_config_name.pyc
(3.92 KB)
📄
test_config_name.pyo
(3.92 KB)
📄
test_configdialog.py
(782 B)
📄
test_configdialog.pyc
(1.62 KB)
📄
test_configdialog.pyo
(1.62 KB)
📄
test_delegator.py
(1.26 KB)
📄
test_delegator.pyc
(1.29 KB)
📄
test_delegator.pyo
(1.29 KB)
📄
test_editmenu.py
(3.09 KB)
📄
test_editmenu.pyc
(4.33 KB)
📄
test_editmenu.pyo
(4.33 KB)
📄
test_formatparagraph.py
(14.01 KB)
📄
test_formatparagraph.pyc
(13.98 KB)
📄
test_formatparagraph.pyo
(13.98 KB)
📄
test_grep.py
(2.7 KB)
📄
test_grep.pyc
(3.67 KB)
📄
test_grep.pyo
(3.67 KB)
📄
test_helpabout.py
(1.57 KB)
📄
test_helpabout.pyc
(2.31 KB)
📄
test_helpabout.pyo
(2.31 KB)
📄
test_hyperparser.py
(5.55 KB)
📄
test_hyperparser.pyc
(6.58 KB)
📄
test_hyperparser.pyo
(6.58 KB)
📄
test_idlehistory.py
(5.37 KB)
📄
test_idlehistory.pyc
(7.95 KB)
📄
test_idlehistory.pyo
(7.95 KB)
📄
test_io.py
(9.28 KB)
📄
test_io.pyc
(11.26 KB)
📄
test_io.pyo
(11.26 KB)
📄
test_parenmatch.py
(3.73 KB)
📄
test_parenmatch.pyc
(5.33 KB)
📄
test_parenmatch.pyo
(5.33 KB)
📄
test_pathbrowser.py
(940 B)
📄
test_pathbrowser.pyc
(1.45 KB)
📄
test_pathbrowser.pyo
(1.45 KB)
📄
test_rstrip.py
(1.58 KB)
📄
test_rstrip.pyc
(1.73 KB)
📄
test_rstrip.pyo
(1.73 KB)
📄
test_searchdialogbase.py
(5.73 KB)
📄
test_searchdialogbase.pyc
(6.67 KB)
📄
test_searchdialogbase.pyo
(6.67 KB)
📄
test_searchengine.py
(11.22 KB)
📄
test_searchengine.pyc
(12.35 KB)
📄
test_searchengine.pyo
(12.35 KB)
📄
test_text.py
(6.59 KB)
📄
test_text.pyc
(7.96 KB)
📄
test_text.pyo
(7.96 KB)
📄
test_textview.py
(2.74 KB)
📄
test_textview.pyc
(4.42 KB)
📄
test_textview.pyo
(4.42 KB)
📄
test_warning.py
(2.69 KB)
📄
test_warning.pyc
(3.21 KB)
📄
test_warning.pyo
(3.21 KB)
📄
test_widgetredir.py
(4.08 KB)
📄
test_widgetredir.pyc
(6.23 KB)
📄
test_widgetredir.pyo
(6.23 KB)
Editing: mock_idle.py
'''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 Func(object): '''Mock function captures args and returns result set by test. Attributes: self.called - records call even if no args, kwds passed. self.result - set by init, returned by call. self.args - captures positional arguments. self.kwds - captures keyword arguments. Most common use will probably be to mock methods. Mock_tk.Var and Mbox_func are special variants of this. ''' def __init__(self, result=None): self.called = False self.result = result self.args = None self.kwds = None def __call__(self, *args, **kwds): self.called = True self.args = args self.kwds = kwds if isinstance(self.result, BaseException): raise self.result else: return self.result class Editor(object): '''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(object): '''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
Upload File
Create Folder