PATH: //proc/self/root/opt/alt/python34/lib64/python3.4/idlelib
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 AutoComplete.py
↓
X
📄 AutoCompleteWindow.py
↓
X
📄 AutoExpand.py
↓
X
📄 Bindings.py
↓
X
📄 CREDITS.txt
↓
X
📄 CallTipWindow.py
↓
X
📄 CallTips.py
↓
X
📄 ChangeLog
↓
X
📄 ClassBrowser.py
↓
X
📄 CodeContext.py
↓
X
📄 ColorDelegator.py
↓
X
📄 Debugger.py
↓
X
📄 Delegator.py
↓
X
📄 EditorWindow.py
↓
X
📄 FileList.py
↓
X
📄 FormatParagraph.py
↓
X
📄 GrepDialog.py
↓
X
📄 HISTORY.txt
↓
X
📄 HyperParser.py
↓
X
📄 IOBinding.py
↓
X
📁 Icons/
X
📄 IdleHistory.py
↓
X
📄 MultiCall.py
↓
X
📄 MultiStatusBar.py
↓
X
📄 NEWS.txt
↓
X
📄 ObjectBrowser.py
↓
X
📄 OutputWindow.py
↓
X
📄 ParenMatch.py
↓
X
📄 PathBrowser.py
↓
X
📄 Percolator.py
↓
X
📄 PyParse.py
↓
X
📄 PyShell.py
↓
X
📄 README.txt
↓
X
📄 RemoteDebugger.py
↓
X
📄 RemoteObjectBrowser.py
↓
X
📄 ReplaceDialog.py
↓
X
📄 RstripExtension.py
↓
X
📄 ScriptBinding.py
↓
X
📄 ScrolledList.py
↓
X
📄 SearchDialog.py
↓
X
📄 SearchDialogBase.py
↓
X
📄 SearchEngine.py
↓
X
📄 StackViewer.py
↓
X
📄 TODO.txt
↓
X
📄 ToolTip.py
↓
X
📄 TreeWidget.py
↓
X
📄 UndoDelegator.py
↓
X
📄 WidgetRedirector.py
↓
X
📄 WindowList.py
↓
X
📄 ZoomHeight.py
↓
X
📄 __init__.py
↓
X
📄 __main__.py
↓
X
📁 __pycache__/
X
📄 aboutDialog.py
↓
X
📄 config-extensions.def
↓
X
📄 config-highlight.def
↓
X
📄 config-keys.def
↓
X
📄 config-main.def
↓
X
📄 configDialog.py
↓
X
📄 configHandler.py
↓
X
📄 configHelpSourceEdit.py
↓
X
📄 configSectionNameDialog.py
↓
X
📄 dynOptionMenuWidget.py
↓
X
📄 extend.txt
↓
X
📄 help.html
↓
X
📄 help.py
↓
X
📄 help.txt
↓
X
📄 idle.py
↓
X
📄 idle.pyw
↓
X
📁 idle_test/
X
📄 idlever.py
↓
X
📄 keybindingDialog.py
↓
X
📄 macosxSupport.py
↓
X
📄 rpc.py
↓
X
📄 run.py
↓
X
📄 tabbedpages.py
↓
X
📄 textView.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: Delegator.py
class Delegator: # The cache is only used to be able to change delegates! def __init__(self, delegate=None): self.delegate = delegate self.__cache = set() def __getattr__(self, name): attr = getattr(self.delegate, name) # May raise AttributeError setattr(self, name, attr) self.__cache.add(name) return attr def resetcache(self): for key in self.__cache: try: delattr(self, key) except AttributeError: pass self.__cache.clear() def setdelegate(self, delegate): self.resetcache() self.delegate = delegate
SIMPAN PERUBAHAN