├── LICENSE ├── README.md ├── design └── menu_items.csv └── idlelib ├── AutoComplete.py ├── AutoCompleteWindow.py ├── AutoExpand.py ├── Bindings.py ├── CREDITS.txt ├── CallTipWindow.py ├── CallTips.py ├── ChangeLog ├── ClassBrowser.py ├── CodeContext.py ├── ColorDelegator.py ├── Debugger.py ├── Delegator.py ├── EditorWindow.py ├── FileList.py ├── FormatParagraph.py ├── GrepDialog.py ├── HISTORY.txt ├── HyperParser.py ├── IOBinding.py ├── Icons ├── folder.gif ├── idle.icns ├── idle.ico ├── idle_16.gif ├── idle_16.png ├── idle_32.gif ├── idle_32.png ├── idle_48.gif ├── idle_48.png ├── minusnode.gif ├── openfolder.gif ├── plusnode.gif ├── python.gif └── tk.gif ├── IdleHistory.py ├── MultiCall.py ├── MultiStatusBar.py ├── NEWS.txt ├── ObjectBrowser.py ├── OutputWindow.py ├── ParenMatch.py ├── PathBrowser.py ├── Percolator.py ├── PyParse.py ├── PyShell.py ├── README.txt ├── RemoteDebugger.py ├── RemoteObjectBrowser.py ├── ReplaceDialog.py ├── RstripExtension.py ├── ScriptBinding.py ├── ScrolledList.py ├── SearchDialog.py ├── SearchDialogBase.py ├── SearchEngine.py ├── StackViewer.py ├── TODO.txt ├── ToolTip.py ├── TreeWidget.py ├── UndoDelegator.py ├── WidgetRedirector.py ├── WindowList.py ├── ZoomHeight.py ├── __init__.py ├── __main__.py ├── aboutDialog.py ├── config-extensions.def ├── config-highlight.def ├── config-keys.def ├── config-main.def ├── configDialog.py ├── configHandler.py ├── configHelpSourceEdit.py ├── configSectionNameDialog.py ├── dynOptionMenuWidget.py ├── extend.txt ├── help.txt ├── htmlcov ├── AutoComplete.html ├── AutoCompleteWindow.html ├── AutoExpand.html ├── Bindings.html ├── CallTipWindow.html ├── CallTips.html ├── ClassBrowser.html ├── CodeContext.html ├── ColorDelegator.html ├── Debugger.html ├── Delegator.html ├── EditorWindow.html ├── FileList.html ├── FormatParagraph.html ├── GrepDialog.html ├── HyperParser.html ├── IOBinding.html ├── IdleHistory.html ├── MultiCall.html ├── MultiStatusBar.html ├── ObjectBrowser.html ├── OutputWindow.html ├── ParenMatch.html ├── PathBrowser.html ├── Percolator.html ├── PyParse.html ├── PyShell.html ├── RemoteDebugger.html ├── RemoteObjectBrowser.html ├── ReplaceDialog.html ├── RstripExtension.html ├── ScriptBinding.html ├── ScrolledList.html ├── SearchDialog.html ├── SearchDialogBase.html ├── SearchEngine.html ├── StackViewer.html ├── ToolTip.html ├── TreeWidget.html ├── UndoDelegator.html ├── WidgetRedirector.html ├── WindowList.html ├── ZoomHeight.html ├── __init__.html ├── __main__.html ├── aboutDialog.html ├── configDialog.html ├── configHandler.html ├── configHelpSourceEdit.html ├── configSectionNameDialog.html ├── coverage_html.js ├── dynOptionMenuWidget.html ├── idle.html ├── idle_i18n.html ├── idlever.html ├── index.html ├── jquery.hotkeys.js ├── jquery.isonscreen.js ├── jquery.min.js ├── jquery.tablesorter.min.js ├── keybd_closed.png ├── keybd_open.png ├── keybindingDialog.html ├── macosxSupport.html ├── rpc.html ├── run.html ├── status.dat ├── style.css ├── tabbedpages.html ├── testcode.html └── textView.html ├── idle.bat ├── idle.py ├── idle.pyw ├── idle_test ├── README.txt ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-34.pyc │ └── htest.cpython-34.pyc ├── htest.py ├── mock_idle.py ├── mock_tk.py ├── test_autocomplete.py ├── test_autoexpand.py ├── test_calltips.py ├── test_config_name.py ├── test_configdialog.py ├── test_delegator.py ├── test_formatparagraph.py ├── test_grep.py ├── test_hyperparser.py ├── test_idlehistory.py ├── test_io.py ├── test_parenmatch.py ├── test_pathbrowser.py ├── test_rstrip.py ├── test_searchdialogbase.py ├── test_searchengine.py ├── test_text.py ├── test_textview.py ├── test_warning.py └── test_widgetredir.py ├── idlever.py ├── keybindingDialog.py ├── locale ├── es │ └── LC_MESSAGES │ │ ├── idlelib.mo │ │ └── idlelib.po └── idlelib.pot ├── macosxSupport.py ├── rpc.py ├── run.py ├── t.py ├── tabbedpages.py └── textView.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/README.md -------------------------------------------------------------------------------- /design/menu_items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/design/menu_items.csv -------------------------------------------------------------------------------- /idlelib/AutoComplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/AutoComplete.py -------------------------------------------------------------------------------- /idlelib/AutoCompleteWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/AutoCompleteWindow.py -------------------------------------------------------------------------------- /idlelib/AutoExpand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/AutoExpand.py -------------------------------------------------------------------------------- /idlelib/Bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Bindings.py -------------------------------------------------------------------------------- /idlelib/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/CREDITS.txt -------------------------------------------------------------------------------- /idlelib/CallTipWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/CallTipWindow.py -------------------------------------------------------------------------------- /idlelib/CallTips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/CallTips.py -------------------------------------------------------------------------------- /idlelib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/ChangeLog -------------------------------------------------------------------------------- /idlelib/ClassBrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/ClassBrowser.py -------------------------------------------------------------------------------- /idlelib/CodeContext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/CodeContext.py -------------------------------------------------------------------------------- /idlelib/ColorDelegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/ColorDelegator.py -------------------------------------------------------------------------------- /idlelib/Debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Debugger.py -------------------------------------------------------------------------------- /idlelib/Delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Delegator.py -------------------------------------------------------------------------------- /idlelib/EditorWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/EditorWindow.py -------------------------------------------------------------------------------- /idlelib/FileList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/FileList.py -------------------------------------------------------------------------------- /idlelib/FormatParagraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/FormatParagraph.py -------------------------------------------------------------------------------- /idlelib/GrepDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/GrepDialog.py -------------------------------------------------------------------------------- /idlelib/HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/HISTORY.txt -------------------------------------------------------------------------------- /idlelib/HyperParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/HyperParser.py -------------------------------------------------------------------------------- /idlelib/IOBinding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/IOBinding.py -------------------------------------------------------------------------------- /idlelib/Icons/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/folder.gif -------------------------------------------------------------------------------- /idlelib/Icons/idle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/idle.icns -------------------------------------------------------------------------------- /idlelib/Icons/idle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/idle.ico -------------------------------------------------------------------------------- /idlelib/Icons/idle_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/idle_16.gif -------------------------------------------------------------------------------- /idlelib/Icons/idle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/idle_16.png -------------------------------------------------------------------------------- /idlelib/Icons/idle_32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/idle_32.gif -------------------------------------------------------------------------------- /idlelib/Icons/idle_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/idle_32.png -------------------------------------------------------------------------------- /idlelib/Icons/idle_48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/idle_48.gif -------------------------------------------------------------------------------- /idlelib/Icons/idle_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/idle_48.png -------------------------------------------------------------------------------- /idlelib/Icons/minusnode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/minusnode.gif -------------------------------------------------------------------------------- /idlelib/Icons/openfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/openfolder.gif -------------------------------------------------------------------------------- /idlelib/Icons/plusnode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/plusnode.gif -------------------------------------------------------------------------------- /idlelib/Icons/python.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/python.gif -------------------------------------------------------------------------------- /idlelib/Icons/tk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Icons/tk.gif -------------------------------------------------------------------------------- /idlelib/IdleHistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/IdleHistory.py -------------------------------------------------------------------------------- /idlelib/MultiCall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/MultiCall.py -------------------------------------------------------------------------------- /idlelib/MultiStatusBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/MultiStatusBar.py -------------------------------------------------------------------------------- /idlelib/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/NEWS.txt -------------------------------------------------------------------------------- /idlelib/ObjectBrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/ObjectBrowser.py -------------------------------------------------------------------------------- /idlelib/OutputWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/OutputWindow.py -------------------------------------------------------------------------------- /idlelib/ParenMatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/ParenMatch.py -------------------------------------------------------------------------------- /idlelib/PathBrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/PathBrowser.py -------------------------------------------------------------------------------- /idlelib/Percolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/Percolator.py -------------------------------------------------------------------------------- /idlelib/PyParse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/PyParse.py -------------------------------------------------------------------------------- /idlelib/PyShell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/PyShell.py -------------------------------------------------------------------------------- /idlelib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/README.txt -------------------------------------------------------------------------------- /idlelib/RemoteDebugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/RemoteDebugger.py -------------------------------------------------------------------------------- /idlelib/RemoteObjectBrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/RemoteObjectBrowser.py -------------------------------------------------------------------------------- /idlelib/ReplaceDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/ReplaceDialog.py -------------------------------------------------------------------------------- /idlelib/RstripExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/RstripExtension.py -------------------------------------------------------------------------------- /idlelib/ScriptBinding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/ScriptBinding.py -------------------------------------------------------------------------------- /idlelib/ScrolledList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/ScrolledList.py -------------------------------------------------------------------------------- /idlelib/SearchDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/SearchDialog.py -------------------------------------------------------------------------------- /idlelib/SearchDialogBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/SearchDialogBase.py -------------------------------------------------------------------------------- /idlelib/SearchEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/SearchEngine.py -------------------------------------------------------------------------------- /idlelib/StackViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/StackViewer.py -------------------------------------------------------------------------------- /idlelib/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/TODO.txt -------------------------------------------------------------------------------- /idlelib/ToolTip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/ToolTip.py -------------------------------------------------------------------------------- /idlelib/TreeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/TreeWidget.py -------------------------------------------------------------------------------- /idlelib/UndoDelegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/UndoDelegator.py -------------------------------------------------------------------------------- /idlelib/WidgetRedirector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/WidgetRedirector.py -------------------------------------------------------------------------------- /idlelib/WindowList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/WindowList.py -------------------------------------------------------------------------------- /idlelib/ZoomHeight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/ZoomHeight.py -------------------------------------------------------------------------------- /idlelib/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this a package. 2 | -------------------------------------------------------------------------------- /idlelib/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/__main__.py -------------------------------------------------------------------------------- /idlelib/aboutDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/aboutDialog.py -------------------------------------------------------------------------------- /idlelib/config-extensions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/config-extensions.def -------------------------------------------------------------------------------- /idlelib/config-highlight.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/config-highlight.def -------------------------------------------------------------------------------- /idlelib/config-keys.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/config-keys.def -------------------------------------------------------------------------------- /idlelib/config-main.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/config-main.def -------------------------------------------------------------------------------- /idlelib/configDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/configDialog.py -------------------------------------------------------------------------------- /idlelib/configHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/configHandler.py -------------------------------------------------------------------------------- /idlelib/configHelpSourceEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/configHelpSourceEdit.py -------------------------------------------------------------------------------- /idlelib/configSectionNameDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/configSectionNameDialog.py -------------------------------------------------------------------------------- /idlelib/dynOptionMenuWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/dynOptionMenuWidget.py -------------------------------------------------------------------------------- /idlelib/extend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/extend.txt -------------------------------------------------------------------------------- /idlelib/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/help.txt -------------------------------------------------------------------------------- /idlelib/htmlcov/AutoComplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/AutoComplete.html -------------------------------------------------------------------------------- /idlelib/htmlcov/AutoCompleteWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/AutoCompleteWindow.html -------------------------------------------------------------------------------- /idlelib/htmlcov/AutoExpand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/AutoExpand.html -------------------------------------------------------------------------------- /idlelib/htmlcov/Bindings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/Bindings.html -------------------------------------------------------------------------------- /idlelib/htmlcov/CallTipWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/CallTipWindow.html -------------------------------------------------------------------------------- /idlelib/htmlcov/CallTips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/CallTips.html -------------------------------------------------------------------------------- /idlelib/htmlcov/ClassBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/ClassBrowser.html -------------------------------------------------------------------------------- /idlelib/htmlcov/CodeContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/CodeContext.html -------------------------------------------------------------------------------- /idlelib/htmlcov/ColorDelegator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/ColorDelegator.html -------------------------------------------------------------------------------- /idlelib/htmlcov/Debugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/Debugger.html -------------------------------------------------------------------------------- /idlelib/htmlcov/Delegator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/Delegator.html -------------------------------------------------------------------------------- /idlelib/htmlcov/EditorWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/EditorWindow.html -------------------------------------------------------------------------------- /idlelib/htmlcov/FileList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/FileList.html -------------------------------------------------------------------------------- /idlelib/htmlcov/FormatParagraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/FormatParagraph.html -------------------------------------------------------------------------------- /idlelib/htmlcov/GrepDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/GrepDialog.html -------------------------------------------------------------------------------- /idlelib/htmlcov/HyperParser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/HyperParser.html -------------------------------------------------------------------------------- /idlelib/htmlcov/IOBinding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/IOBinding.html -------------------------------------------------------------------------------- /idlelib/htmlcov/IdleHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/IdleHistory.html -------------------------------------------------------------------------------- /idlelib/htmlcov/MultiCall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/MultiCall.html -------------------------------------------------------------------------------- /idlelib/htmlcov/MultiStatusBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/MultiStatusBar.html -------------------------------------------------------------------------------- /idlelib/htmlcov/ObjectBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/ObjectBrowser.html -------------------------------------------------------------------------------- /idlelib/htmlcov/OutputWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/OutputWindow.html -------------------------------------------------------------------------------- /idlelib/htmlcov/ParenMatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/ParenMatch.html -------------------------------------------------------------------------------- /idlelib/htmlcov/PathBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/PathBrowser.html -------------------------------------------------------------------------------- /idlelib/htmlcov/Percolator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/Percolator.html -------------------------------------------------------------------------------- /idlelib/htmlcov/PyParse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/PyParse.html -------------------------------------------------------------------------------- /idlelib/htmlcov/PyShell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/PyShell.html -------------------------------------------------------------------------------- /idlelib/htmlcov/RemoteDebugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/RemoteDebugger.html -------------------------------------------------------------------------------- /idlelib/htmlcov/RemoteObjectBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/RemoteObjectBrowser.html -------------------------------------------------------------------------------- /idlelib/htmlcov/ReplaceDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/ReplaceDialog.html -------------------------------------------------------------------------------- /idlelib/htmlcov/RstripExtension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/RstripExtension.html -------------------------------------------------------------------------------- /idlelib/htmlcov/ScriptBinding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/ScriptBinding.html -------------------------------------------------------------------------------- /idlelib/htmlcov/ScrolledList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/ScrolledList.html -------------------------------------------------------------------------------- /idlelib/htmlcov/SearchDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/SearchDialog.html -------------------------------------------------------------------------------- /idlelib/htmlcov/SearchDialogBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/SearchDialogBase.html -------------------------------------------------------------------------------- /idlelib/htmlcov/SearchEngine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/SearchEngine.html -------------------------------------------------------------------------------- /idlelib/htmlcov/StackViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/StackViewer.html -------------------------------------------------------------------------------- /idlelib/htmlcov/ToolTip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/ToolTip.html -------------------------------------------------------------------------------- /idlelib/htmlcov/TreeWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/TreeWidget.html -------------------------------------------------------------------------------- /idlelib/htmlcov/UndoDelegator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/UndoDelegator.html -------------------------------------------------------------------------------- /idlelib/htmlcov/WidgetRedirector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/WidgetRedirector.html -------------------------------------------------------------------------------- /idlelib/htmlcov/WindowList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/WindowList.html -------------------------------------------------------------------------------- /idlelib/htmlcov/ZoomHeight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/ZoomHeight.html -------------------------------------------------------------------------------- /idlelib/htmlcov/__init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/__init__.html -------------------------------------------------------------------------------- /idlelib/htmlcov/__main__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/__main__.html -------------------------------------------------------------------------------- /idlelib/htmlcov/aboutDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/aboutDialog.html -------------------------------------------------------------------------------- /idlelib/htmlcov/configDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/configDialog.html -------------------------------------------------------------------------------- /idlelib/htmlcov/configHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/configHandler.html -------------------------------------------------------------------------------- /idlelib/htmlcov/configHelpSourceEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/configHelpSourceEdit.html -------------------------------------------------------------------------------- /idlelib/htmlcov/configSectionNameDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/configSectionNameDialog.html -------------------------------------------------------------------------------- /idlelib/htmlcov/coverage_html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/coverage_html.js -------------------------------------------------------------------------------- /idlelib/htmlcov/dynOptionMenuWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/dynOptionMenuWidget.html -------------------------------------------------------------------------------- /idlelib/htmlcov/idle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/idle.html -------------------------------------------------------------------------------- /idlelib/htmlcov/idle_i18n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/idle_i18n.html -------------------------------------------------------------------------------- /idlelib/htmlcov/idlever.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/idlever.html -------------------------------------------------------------------------------- /idlelib/htmlcov/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/index.html -------------------------------------------------------------------------------- /idlelib/htmlcov/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/jquery.hotkeys.js -------------------------------------------------------------------------------- /idlelib/htmlcov/jquery.isonscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/jquery.isonscreen.js -------------------------------------------------------------------------------- /idlelib/htmlcov/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/jquery.min.js -------------------------------------------------------------------------------- /idlelib/htmlcov/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /idlelib/htmlcov/keybd_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/keybd_closed.png -------------------------------------------------------------------------------- /idlelib/htmlcov/keybd_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/keybd_open.png -------------------------------------------------------------------------------- /idlelib/htmlcov/keybindingDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/keybindingDialog.html -------------------------------------------------------------------------------- /idlelib/htmlcov/macosxSupport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/macosxSupport.html -------------------------------------------------------------------------------- /idlelib/htmlcov/rpc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/rpc.html -------------------------------------------------------------------------------- /idlelib/htmlcov/run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/run.html -------------------------------------------------------------------------------- /idlelib/htmlcov/status.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/status.dat -------------------------------------------------------------------------------- /idlelib/htmlcov/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/style.css -------------------------------------------------------------------------------- /idlelib/htmlcov/tabbedpages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/tabbedpages.html -------------------------------------------------------------------------------- /idlelib/htmlcov/testcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/testcode.html -------------------------------------------------------------------------------- /idlelib/htmlcov/textView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/htmlcov/textView.html -------------------------------------------------------------------------------- /idlelib/idle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle.bat -------------------------------------------------------------------------------- /idlelib/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle.py -------------------------------------------------------------------------------- /idlelib/idle.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle.pyw -------------------------------------------------------------------------------- /idlelib/idle_test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/README.txt -------------------------------------------------------------------------------- /idlelib/idle_test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/__init__.py -------------------------------------------------------------------------------- /idlelib/idle_test/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /idlelib/idle_test/__pycache__/htest.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/__pycache__/htest.cpython-34.pyc -------------------------------------------------------------------------------- /idlelib/idle_test/htest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/htest.py -------------------------------------------------------------------------------- /idlelib/idle_test/mock_idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/mock_idle.py -------------------------------------------------------------------------------- /idlelib/idle_test/mock_tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/mock_tk.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_autocomplete.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_autoexpand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_autoexpand.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_calltips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_calltips.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_config_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_config_name.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_configdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_configdialog.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_delegator.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_formatparagraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_formatparagraph.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_grep.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_hyperparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_hyperparser.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_idlehistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_idlehistory.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_io.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_parenmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_parenmatch.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_pathbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_pathbrowser.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_rstrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_rstrip.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_searchdialogbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_searchdialogbase.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_searchengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_searchengine.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_text.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_textview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_textview.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_warning.py -------------------------------------------------------------------------------- /idlelib/idle_test/test_widgetredir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/idle_test/test_widgetredir.py -------------------------------------------------------------------------------- /idlelib/idlever.py: -------------------------------------------------------------------------------- 1 | IDLE_VERSION = "3.5.0a3" 2 | -------------------------------------------------------------------------------- /idlelib/keybindingDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/keybindingDialog.py -------------------------------------------------------------------------------- /idlelib/locale/es/LC_MESSAGES/idlelib.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/locale/es/LC_MESSAGES/idlelib.mo -------------------------------------------------------------------------------- /idlelib/locale/es/LC_MESSAGES/idlelib.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/locale/es/LC_MESSAGES/idlelib.po -------------------------------------------------------------------------------- /idlelib/locale/idlelib.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/locale/idlelib.pot -------------------------------------------------------------------------------- /idlelib/macosxSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/macosxSupport.py -------------------------------------------------------------------------------- /idlelib/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/rpc.py -------------------------------------------------------------------------------- /idlelib/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/run.py -------------------------------------------------------------------------------- /idlelib/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/t.py -------------------------------------------------------------------------------- /idlelib/tabbedpages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/tabbedpages.py -------------------------------------------------------------------------------- /idlelib/textView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/idle-reimagined/HEAD/idlelib/textView.py --------------------------------------------------------------------------------