blob: c784a1a0b6133bfaaad1045fc1eb16db36ea7906 [file] [log] [blame]
Terry Jan Reedyd4705272015-10-02 23:22:59 -04001README.txt: an index to idlelib files and the IDLE menu.
Steven M. Gavad39993e2001-07-20 01:36:49 +00002
Terry Jan Reedy5aeadb32015-12-18 15:46:57 -05003IDLE is Python's Integrated Development and Learning
Terry Jan Reedyd4705272015-10-02 23:22:59 -04004Environment. The user documentation is part of the Library Reference and
5is available in IDLE by selecting Help => IDLE Help. This README documents
6idlelib for IDLE developers and curious users.
Steven M. Gavad39993e2001-07-20 01:36:49 +00007
Terry Jan Reedyd4705272015-10-02 23:22:59 -04008IDLELIB FILES lists files alphabetically by category,
9with a short description of each.
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +000010
Terry Jan Reedyd4705272015-10-02 23:22:59 -040011IDLE MENU show the menu tree, annotated with the module
12or module object that implements the corresponding function.
Kurt B. Kaiserf5934dd2002-12-31 17:56:18 +000013
Terry Jan Reedyd4705272015-10-02 23:22:59 -040014This file is descriptive, not prescriptive, and may have errors
15and omissions and lag behind changes in idlelib.
Kurt B. Kaiser18210562003-06-12 03:51:27 +000016
17
Terry Jan Reedyd4705272015-10-02 23:22:59 -040018IDLELIB FILES
Berker Peksagc16387b2016-09-28 17:21:52 +030019Implementation files not in IDLE MENU are marked (nim).
Terry Jan Reedyd4705272015-10-02 23:22:59 -040020Deprecated files and objects are listed separately as the end.
Kurt B. Kaiser18210562003-06-12 03:51:27 +000021
Terry Jan Reedyd4705272015-10-02 23:22:59 -040022Startup
23-------
24__init__.py # import, does nothing
25__main__.py # -m, starts IDLE
26idle.bat
27idle.py
28idle.pyw
Kurt B. Kaiser18210562003-06-12 03:51:27 +000029
Terry Jan Reedyd4705272015-10-02 23:22:59 -040030Implementation
31--------------
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -040032autocomplete.py # Complete attribute names or filenames.
33autocomplete_w.py # Display completions.
34autoexpand.py # Expand word with previous word in file.
35browser.py # Create module browser window.
36calltip_w.py # Display calltip.
37calltips.py # Create calltip text.
38codecontext.py # Show compound statement headers otherwise not visible.
39colorizer.py # Colorize text (nim)
40config.py # Load, fetch, and save configuration (nim).
41configdialog.py # Display user configuration dialogs.
42config_help.py # Specify help source in configdialog.
43config_key.py # Change keybindings.
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -040044dynoption.py # Define mutable OptionMenu widget (nim).
45debugobj.py # Define class used in stackviewer.
46debugobj_r.py # Communicate objects between processes with rpc (nim).
47debugger.py # Debug code run from shell or editor; show window.
48debugger_r.py # Debug code run in remote process.
49delegator.py # Define base class for delegators (nim).
50editor.py # Define most of editor and utility functions.
51filelist.py # Open files and manage list of open windows (nim).
52grep.py # Find all occurrences of pattern in multiple files.
Terry Jan Reedyd4705272015-10-02 23:22:59 -040053help.py # Display IDLE's html doc.
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -040054help_about.py # Display About IDLE dialog.
55history.py # Get previous or next user input in shell (nim)
56hyperparser.py # Parse code around a given index.
57iomenu.py # Open, read, and write files
58macosx.py # Help IDLE run on Macs (nim).
59mainmenu.py # Define most of IDLE menu.
60multicall.py # Wrap tk widget to allow multiple calls per event (nim).
61outwin.py # Create window for grep output.
62paragraph.py # Re-wrap multiline strings and comments.
63parenmatch.py # Match fenceposts: (), [], and {}.
64pathbrowser.py # Create path browser window.
65percolator.py # Manage delegator stack (nim).
66pyparse.py # Give information on code indentation
67pyshell.py # Start IDLE, manage shell, complete editor window
Raymond Hettinger15f44ab2016-08-30 10:47:49 -070068query.py # Query user for information
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -040069redirector.py # Intercept widget subcommands (for percolator) (nim).
70replace.py # Search and replace pattern in text.
Terry Jan Reedyd4705272015-10-02 23:22:59 -040071rpc.py # Commuicate between idle and user processes (nim).
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -040072rstrip.py # Strip trailing whitespace.
Terry Jan Reedyd4705272015-10-02 23:22:59 -040073run.py # Manage user code execution subprocess.
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -040074runscript.py # Check and run user code.
75scrolledlist.py # Define scrolledlist widget for IDLE (nim).
76search.py # Search for pattern in text.
77searchbase.py # Define base for search, replace, and grep dialogs.
78searchengine.py # Define engine for all 3 search dialogs.
79stackviewer.py # View stack after exception.
80statusbar.py # Define status bar for windows (nim).
Terry Jan Reedyd4705272015-10-02 23:22:59 -040081tabbedpages.py # Define tabbed pages widget (nim).
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -040082textview.py # Define read-only text widget (nim).
83tree.py # Define tree widger, used in browsers (nim).
84undo.py # Manage undo stack.
85windows.py # Manage window list and define listed top level.
86zoomheight.py # Zoom window to full height of screen.
Kurt B. Kaiser18210562003-06-12 03:51:27 +000087
Terry Jan Reedyd4705272015-10-02 23:22:59 -040088Configuration
89-------------
90config-extensions.def # Defaults for extensions
91config-highlight.def # Defaults for colorizing
92config-keys.def # Defaults for key bindings
93config-main.def # Defai;ts fpr font and geneal
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +000094
Terry Jan Reedyd4705272015-10-02 23:22:59 -040095Text
96----
97CREDITS.txt # not maintained, displayed by About IDLE
98HISTORY.txt # NEWS up to July 2001
99NEWS.txt # commits, displayed by About IDLE
100README.txt # this file, displeyed by About IDLE
101TODO.txt # needs review
102extend.txt # about writing extensions
103help.html # copy of idle.html in docs, displayed by IDLE Help
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000104
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400105Subdirectories
106--------------
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400107Icons # small image files
108idle_test # files for human test and automated unit tests
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400109
110Unused and Deprecated files and objects (nim)
111---------------------------------------------
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400112tooltip.py # unused
113
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400114
115
116IDLE MENUS
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400117Top level items and most submenu items are defined in mainmenu.
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400118Extenstions add submenu items when active. The names given are
119found, quoted, in one of these modules, paired with a '<<pseudoevent>>'.
120Each pseudoevent is bound to an event handler. Some event handlers
121call another function that does the actual work. The annotations below
122are intended to at least give the module where the actual work is done.
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400123'eEW' = editor.EditorWindow
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400124
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400125File
126 New File # eEW.new_callback
127 Open... # iomenu.open
128 Open Module # eEw.open_module
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400129 Recent Files
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400130 Class Browser # eEW.open_class_browser, browser.ClassBrowser
131 Path Browser # eEW.open_path_browser, pathbrowser
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400132 ---
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400133 Save # iomenu.save
134 Save As... # iomenu.save_as
135 Save Copy As... # iomenu.save_a_copy
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400136 ---
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400137 Print Window # iomenu.print_window
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400138 ---
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400139 Close # eEW.close_event
140 Exit # flist.close_all_callback (bound in eEW)
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400141
142Edit
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400143 Undo # undodelegator
144 Redo # undodelegator
145 --- # eEW.right_menu_event
146 Cut # eEW.cut
147 Copy # eEW.copy
148 Paste # eEW.past
149 Select All # eEW.select_all (+ see eEW.remove_selection)
150 --- # Next 5 items use searchengine; dialogs use searchbase
151 Find # eEW.find_event, search.SearchDialog.find
152 Find Again # eEW.find_again_event, sSD.find_again
153 Find Selection # eEW.find_selection_event, sSD.find_selection
154 Find in Files... # eEW.find_in_files_event, grep
155 Replace... # eEW.replace_event, replace.ReplaceDialog.replace
156 Go to Line # eEW.goto_line_event
157 Show Completions # autocomplete extension and autocompleteWidow (&HP)
158 Expand Word # autoexpand extension
159 Show call tip # Calltips extension and CalltipWindow (& Hyperparser)
160 Show surrounding parens # parenmatch (& Hyperparser)
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400161
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400162Shell # pyshell
Terry Jan Reedy3dad1a52016-09-12 01:57:25 -0400163 View Last Restart # pyshell.PyShell.view_restart_mark
164 Restart Shell # pyshell.PyShell.restart_shell
Terry Jan Reedy4b736762016-09-12 01:50:03 -0400165 Interrupt Execution # pyshell.PyShell.cancel_callback
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400166
167Debug (Shell only)
168 Go to File/Line
Terry Jan Reedy3dad1a52016-09-12 01:57:25 -0400169 debugger # debugger, debugger_r, PyShell.toggle_debuger
170 Stack Viewer # stackviewer, PyShell.open_stack_viewer
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400171 Auto-open Stack Viewer # stackviewer
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400172
173Format (Editor only)
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400174 Indent Region # eEW.indent_region_event
175 Dedent Region # eEW.dedent_region_event
176 Comment Out Reg. # eEW.comment_region_event
177 Uncomment Region # eEW.uncomment_region_event
178 Tabify Region # eEW.tabify_region_event
179 Untabify Region # eEW.untabify_region_event
180 Toggle Tabs # eEW.toggle_tabs_event
181 New Indent Width # eEW.change_indentwidth_event
182 Format Paragraph # paragraph extension
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400183 ---
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400184 Strip tailing whitespace # rstrip extension
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400185
186Run (Editor only)
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400187 Python Shell # pyshell
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400188 ---
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400189 Check Module # runscript
190 Run Module # runscript
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400191
192Options
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400193 Configure IDLE # eEW.config_dialog, configdialog
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400194 (tabs in the dialog)
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400195 Font tab # config-main.def
Terry Jan Reedy0cd6b972016-07-03 19:11:13 -0400196 Highlight tab # query, config-highlight.def
197 Keys tab # query, config_key, config_keys.def
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400198 General tab # config_help, config-main.def
199 Extensions tab # config-extensions.def, corresponding .py
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400200 ---
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400201 Code Context (ed)# codecontext extension
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400202
203Window
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400204 Zoomheight # zoomheight extension
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400205 ---
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400206 <open windows> # windows
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400207
208Help
Serhiy Storchaka13ad3b72017-09-14 09:38:36 +0300209 About IDLE # eEW.about_dialog, help_about.AboutDialog
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400210 ---
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400211 IDLE Help # eEW.help_dialog, helpshow_idlehelp
212 Python Doc # eEW.python_docs
213 Turtle Demo # eEW.open_turtle_demo
Terry Jan Reedyd4705272015-10-02 23:22:59 -0400214 ---
215 <other help sources>
216
217<Context Menu> (right click)
Terry Jan Reedyd80ab7d2016-05-31 20:17:58 -0400218 Defined in editor, PyShelpyshellut
219 Cut
220 Copy
221 Paste
222 ---
223 Go to file/line (shell and output only)
224 Set Breakpoint (editor only)
225 Clear Breakpoint (editor only)
226 Defined in debugger
227 Go to source line
228 Show stack frame
229
230<No menu>
231Center Insert # eEW.center_insert_event
Terry Jan Reedybfbaa6b2016-08-31 00:50:55 -0400232
Serhiy Storchaka13ad3b72017-09-14 09:38:36 +0300233
Terry Jan Reedybfbaa6b2016-08-31 00:50:55 -0400234CODE STYLE -- Generally PEP 8.
235
236import
237------
238Put import at the top, unless there is a good reason otherwise.
239PEP 8 says to group stdlib, 3rd-party dependencies, and package imports.
240For idlelib, the groups are general stdlib, tkinter, and idlelib.
241Sort modules within each group, except that tkinter.ttk follows tkinter.
242Sort 'from idlelib import mod1' and 'from idlelib.mod2 import object'
243together by module, ignoring within module objects.
244Put 'import __main__' after other idlelib imports.
245
Terry Jan Reedy83a10452016-08-31 19:37:28 -0400246Imports only needed for testing are put not at the top but in an
247htest function def or "if __name__ == '__main__'" clause.
Terry Jan Reedybfbaa6b2016-08-31 00:50:55 -0400248
249Within module imports like "from idlelib.mod import class" may cause
250circular imports to deadlock. Even without this, circular imports may
251require at least one of the imports to be delayed until a function call.