• Home
Name Date Size #Lines LOC

..--

Icons/03-May-2024-

idle_test/03-May-2024-4,0103,035

AutoComplete.pyD03-May-20248.8 KiB230190

AutoCompleteWindow.pyD03-May-202416.9 KiB408322

AutoExpand.pyD03-May-20243.3 KiB10587

Bindings.pyD03-May-20242.9 KiB9279

CREDITS.txtD03-May-20241.8 KiB3827

CallTipWindow.pyD03-May-20245.9 KiB163130

CallTips.pyD03-May-20247.6 KiB220178

ChangeLogD03-May-202455.1 KiB1,5921,068

ClassBrowser.pyD03-May-20246.8 KiB237195

CodeContext.pyD03-May-20248.1 KiB177135

ColorDelegator.pyD03-May-20249.5 KiB259220

Debugger.pyD03-May-202417.8 KiB530420

Delegator.pyD03-May-2024665 2619

EditorWindow.pyD03-May-202464 KiB1,7051,341

FileList.pyD03-May-20243.6 KiB125107

FormatParagraph.pyD03-May-20247.1 KiB196153

GrepDialog.pyD03-May-20245 KiB160135

HISTORY.txtD03-May-202410.1 KiB297193

HyperParser.pyD03-May-202410.2 KiB256177

IOBinding.pyD03-May-202421.3 KiB611492

IdleHistory.pyD03-May-20244 KiB10593

MultiCall.pyD03-May-202417.3 KiB431340

MultiStatusBar.pyD03-May-20241.3 KiB4840

NEWS.txtD03-May-202445.6 KiB1,166772

ObjectBrowser.pyD03-May-20244.3 KiB157130

OutputWindow.pyD03-May-20244.5 KiB150110

ParenMatch.pyD03-May-20246.6 KiB179135

PathBrowser.pyD03-May-20242.9 KiB10687

Percolator.pyD03-May-20243.1 KiB10485

PyParse.pyD03-May-202419.1 KiB595374

PyShell.pyD03-May-202457.4 KiB1,6421,344

README.txtD03-May-20247.7 KiB231206

RemoteDebugger.pyD03-May-202411.4 KiB380265

RemoteObjectBrowser.pyD03-May-2024942 3725

ReplaceDialog.pyD03-May-20246.5 KiB221191

RstripExtension.pyD03-May-20241 KiB3422

ScriptBinding.pyD03-May-20248.3 KiB223175

ScrolledList.pyD03-May-20244.3 KiB146116

SearchDialog.pyD03-May-20242.6 KiB9075

SearchDialogBase.pyD03-May-20246.8 KiB185156

SearchEngine.pyD03-May-20247.3 KiB234197

StackViewer.pyD03-May-20244.3 KiB152125

TODO.txtD03-May-20248.3 KiB211162

ToolTip.pyD03-May-20243.1 KiB9874

TreeWidget.pyD03-May-202414.7 KiB468380

UndoDelegator.pyD03-May-202410.5 KiB366260

WidgetRedirector.pyD03-May-20246.7 KiB176140

WindowList.pyD03-May-20242.4 KiB9167

ZoomHeight.pyD03-May-20241.3 KiB5236

__init__.pyD03-May-2024288 96

aboutDialog.pyD03-May-20246.8 KiB152128

config-extensions.defD03-May-20242.9 KiB10090

config-highlight.defD03-May-20242.5 KiB9490

config-keys.defD03-May-20247.6 KiB215209

config-main.defD03-May-20242.5 KiB7971

configDialog.pyD03-May-202464.4 KiB1,4581,211

configHandler.pyD03-May-202431.7 KiB773656

configHelpSourceEdit.pyD03-May-20246.5 KiB169153

configSectionNameDialog.pyD03-May-20243.9 KiB9691

dynOptionMenuWidget.pyD03-May-20241.9 KiB5848

extend.txtD03-May-20243.6 KiB8465

help.htmlD03-May-202441.4 KiB716696

help.pyD03-May-202410.8 KiB278235

help.txtD03-May-202411.9 KiB303238

idle.batD03-May-2024177 54

idle.pyD03-May-2024453 147

idle.pywD03-May-2024563 1817

idlever.pyD03-May-2024415 1311

keybindingDialog.pyD03-May-202412.2 KiB269248

macosxSupport.pyD03-May-20248.2 KiB238174

rpc.pyD03-May-202419.7 KiB598479

run.pyD03-May-202412.2 KiB376316

tabbedpages.pyD03-May-202418 KiB499369

textView.pyD03-May-20243.4 KiB9879

README.txt

1README.txt: an index to idlelib files and the IDLE menu.
2
3IDLE is Python's Integrated Development and Learning
4Environment.  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.
7
8IDLELIB FILES lists files alphabetically by category,
9with a short description of each.
10
11IDLE MENU show the menu tree, annotated with the module
12or module object that implements the corresponding function.
13
14This file is descriptive, not prescriptive, and may have errors
15and omissions and lag behind changes in idlelib.
16
17
18IDLELIB FILES
19Implemetation files not in IDLE MENU are marked (nim).
20Deprecated files and objects are listed separately as the end.
21
22Startup
23-------
24__init__.py  # import, does nothing
25__main__.py  # -m, starts IDLE
26idle.bat
27idle.py
28idle.pyw
29
30Implementation
31--------------
32AutoComplete.py   # Complete attribute names or filenames.
33AutoCompleteWindow.py  # Display completions.
34AutoExpand.py     # Expand word with previous word in file.
35Bindings.py       # Define most of IDLE menu.
36CallTipWindow.py  # Display calltip.
37CallTips.py       # Create calltip text.
38ClassBrowser.py   # Create module browser window.
39CodeContext.py    # Show compound statement headers otherwise not visible.
40ColorDelegator.py # Colorize text (nim).
41Debugger.py       # Debug code run from editor; show window.
42Delegator.py      # Define base class for delegators (nim).
43EditorWindow.py   # Define most of editor and utility functions.
44FileList.py       # Open files and manage list of open windows (nim).
45FormatParagraph.py# Re-wrap multiline strings and comments.
46GrepDialog.py     # Find all occurrences of pattern in multiple files.
47HyperParser.py    # Parse code around a given index.
48IOBinding.py      # Open, read, and write files
49IdleHistory.py    # Get previous or next user input in shell (nim)
50MultiCall.py      # Wrap tk widget to allow multiple calls per event (nim).
51MultiStatusBar.py # Define status bar for windows (nim).
52ObjectBrowser.py  # Define class used in StackViewer (nim).
53OutputWindow.py   # Create window for grep output.
54ParenMatch.py     # Match fenceposts: (), [], and {}.
55PathBrowser.py    # Create path browser window.
56Percolator.py     # Manage delegator stack (nim).
57PyParse.py        # Give information on code indentation
58PyShell.py        # Start IDLE, manage shell, complete editor window
59RemoteDebugger.py # Debug code run in remote process.
60RemoteObjectBrowser.py # Communicate objects between processes with rpc (nim).
61ReplaceDialog.py  # Search and replace pattern in text.
62RstripExtension.py# Strip trailing whitespace
63ScriptBinding.py  # Check and run user code.
64ScrolledList.py   # Define ScrolledList widget for IDLE (nim).
65SearchDialog.py   # Search for pattern in text.
66SearchDialogBase.py  # Define base for search, replace, and grep dialogs.
67SearchEngine.py   # Define engine for all 3 search dialogs.
68StackViewer.py    # View stack after exception.
69TreeWidget.py     # Define tree widger, used in browsers (nim).
70UndoDelegator.py  # Manage undo stack.
71WidgetRedirector.py # Intercept widget subcommands (for percolator) (nim).
72WindowList.py     # Manage window list and define listed top level.
73ZoomHeight.py     # Zoom window to full height of screen.
74aboutDialog.py    # Display About IDLE dialog.
75configDialog.py   # Display user configuration dialogs.
76configHandler.py  # Load, fetch, and save configuration (nim).
77configHelpSourceEdit.py  # Specify help source.
78configSectionNameDialog.py  # Spefify user config section name
79dynOptionMenuWidget.py  # define mutable OptionMenu widget (nim).
80help.py           # Display IDLE's html doc.
81keybindingDialog.py  # Change keybindings.
82macosxSupport.py  # Help IDLE run on Macs (nim).
83rpc.py            # Commuicate between idle and user processes (nim).
84run.py            # Manage user code execution subprocess.
85tabbedpages.py    # Define tabbed pages widget (nim).
86textView.py       # Define read-only text widget (nim).
87
88Configuration
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
94
95Text
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
104
105Subdirectories
106--------------
107Icons  # small image files
108idle_test  # files for human test and automated unit tests
109
110Unused and Deprecated files and objects (nim)
111---------------------------------------------
112EditorWindow.py: Helpdialog and helpDialog
113ToolTip.py: unused.
114help.txt
115idlever.py
116
117
118IDLE MENUS
119Top level items and most submenu items are defined in Bindings.
120Extenstions add submenu items when active.  The names given are
121found, quoted, in one of these modules, paired with a '<<pseudoevent>>'.
122Each pseudoevent is bound to an event handler.  Some event handlers
123call another function that does the actual work.  The annotations below
124are intended to at least give the module where the actual work is done.
125
126File  # IOBindig except as noted
127  New File
128  Open...  # IOBinding.open
129  Open Module
130  Recent Files
131  Class Browser  # Class Browser
132  Path Browser  # Path Browser
133  ---
134  Save  # IDBinding.save
135  Save As...  # IOBinding.save_as
136  Save Copy As...  # IOBindling.save_a_copy
137  ---
138  Print Window  # IOBinding.print_window
139  ---
140  Close
141  Exit
142
143Edit
144  Undo  # undoDelegator
145  Redo  # undoDelegator
146  ---
147  Cut
148  Copy
149  Paste
150  Select All
151  ---  # Next 5 items use SearchEngine; dialogs use SearchDialogBase
152  Find  # Search Dialog
153  Find Again
154  Find Selection
155  Find in Files...  # GrepDialog
156  Replace...  # ReplaceDialog
157  Go to Line
158  Show Completions  # AutoComplete extension and AutoCompleteWidow (&HP)
159  Expand Word  # AutoExpand extension
160  Show call tip  # Calltips extension and CalltipWindow (& Hyperparser)
161  Show surrounding parens  # ParenMatch (& Hyperparser)
162
163Shell  # PyShell
164  View Last Restart    # PyShell.PyShell.view_restart_mark
165  Restart Shell        # PyShell.PyShell.restart_shell
166  Interrupt Execution  # pyshell.PyShell.cancel_callback
167
168Debug (Shell only)
169  Go to File/Line
170  Debugger               # Debugger, RemoteDebugger, PyShell.toggle_debuger
171  Stack Viewer           # StackViewer, PyShell.open_stack_viewer
172  Auto-open Stack Viewer # StackViewer
173
174Format (Editor only)
175  Indent Region
176  Dedent Region
177  Comment Out Region
178  Uncomment Region
179  Tabify Region
180  Untabify Region
181  Toggle Tabs
182  New Indent Width
183  Format Paragraph  # FormatParagraph extension
184  ---
185  Strip tailing whitespace  # RstripExtension extension
186
187Run (Editor only)
188  Python Shell  # PyShell
189  ---
190  Check Module  # ScriptBinding
191  Run Module  # ScriptBinding
192
193Options
194  Configure IDLE  # configDialog
195    (tabs in the dialog)
196    Font tab  # onfig-main.def
197    Highlight tab  # configSectionNameDialog, config-highlight.def
198    Keys tab  # keybindingDialog, configSectionNameDialog, onfig-keus.def
199    General tab  # configHelpSourceEdit, config-main.def
200  Configure Extensions  # configDialog
201    Xyz tab  # xyz.py, config-extensions.def
202  ---
203  Code Context (editor only)  # CodeContext extension
204
205Window
206  Zoomheight  # ZoomHeight extension
207  ---
208  <open windows>  # WindowList
209
210Help
211  About IDLE  # aboutDialog
212  ---
213  IDLE Help  # help
214  Python Doc
215  Turtle Demo
216  ---
217  <other help sources>
218
219<Context Menu> (right click)
220Defined in EditorWindow, PyShell, Output
221   Cut
222   Copy
223   Paste
224   ---
225   Go to file/line (shell and output only)
226   Set Breakpoint (editor only)
227   Clear Breakpoint (editor only)
228 Defined in Debugger
229   Go to source line
230   Show stack frame
231