README.txt 7.5 KB

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