PATH: //opt/alt/python33/lib64/python3.3/idlelib/idle_test
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 README.txt
↓
X
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 mock_idle.py
↓
X
📄 mock_tk.py
↓
X
📄 test_calltips.py
↓
X
📄 test_config_name.py
↓
X
📄 test_delegator.py
↓
X
📄 test_formatparagraph.py
↓
X
📄 test_grep.py
↓
X
📄 test_idlehistory.py
↓
X
📄 test_pathbrowser.py
↓
X
📄 test_rstrip.py
↓
X
📄 test_searchengine.py
↓
X
📄 test_text.py
↓
X
📄 test_warning.py
↓
X
SAVING...
BERHASIL DIUBAH!
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 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
SIMPAN PERUBAHAN