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