• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2<!DOCTYPE html>
3
4<html>
5  <head>
6    <meta charset="utf-8" />
7    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8    <title>IDLE &#8212; Python 3.11.0a4 documentation</title>
9    <link rel="stylesheet" href="../_static/pydoctheme.css" type="text/css" />
10    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
11
12    <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
13    <script src="../_static/jquery.js"></script>
14    <script src="../_static/underscore.js"></script>
15    <script src="../_static/doctools.js"></script>
16    <script src="../_static/language_data.js"></script>
17
18    <script src="../_static/sidebar.js"></script>
19
20    <link rel="search" type="application/opensearchdescription+xml"
21          title="Search within Python 3.11.0a4 documentation"
22          href="../_static/opensearch.xml"/>
23    <link rel="author" title="About these documents" href="../about.html" />
24    <link rel="index" title="Index" href="../genindex.html" />
25    <link rel="search" title="Search" href="../search.html" />
26    <link rel="copyright" title="Copyright" href="../copyright.html" />
27    <link rel="next" title="Development Tools" href="development.html" />
28    <link rel="prev" title="tkinter.tix — Extension widgets for Tk" href="tkinter.tix.html" />
29    <link rel="canonical" href="https://docs.python.org/3/library/idle.html" />
30
31
32
33
34
35    <style>
36      @media only screen {
37        table.full-width-table {
38            width: 100%;
39        }
40      }
41    </style>
42
43    <link rel="shortcut icon" type="image/png" href="../_static/py.png" />
44
45    <script type="text/javascript" src="../_static/copybutton.js"></script>
46
47
48
49
50  </head><body>
51
52    <div class="related" role="navigation" aria-label="related navigation">
53      <h3>Navigation</h3>
54      <ul>
55        <li class="right" style="margin-right: 10px">
56          <a href="../genindex.html" title="General Index"
57             accesskey="I">index</a></li>
58        <li class="right" >
59          <a href="../py-modindex.html" title="Python Module Index"
60             >modules</a> |</li>
61        <li class="right" >
62          <a href="development.html" title="Development Tools"
63             accesskey="N">next</a> |</li>
64        <li class="right" >
65          <a href="tkinter.tix.html" title="tkinter.tix — Extension widgets for Tk"
66             accesskey="P">previous</a> |</li>
67
68    <li><img src="../_static/py.png" alt=""
69             style="vertical-align: middle; margin-top: -1px"/></li>
70    <li><a href="https://www.python.org/">Python</a> &#187;</li>
71
72
73    <li id="cpython-language-and-version">
74      <a href="../index.html">3.11.0a4 Documentation</a> &#187;
75    </li>
76
77          <li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
78          <li class="nav-item nav-item-2"><a href="tk.html" accesskey="U">Graphical User Interfaces with Tk</a> &#187;</li>
79        <li class="nav-item nav-item-this"><a href="">IDLE</a></li>
80    <li class="right">
81
82
83    <div class="inline-search" style="display: none" role="search">
84        <form class="inline-search" action="../search.html" method="get">
85          <input placeholder="Quick search" type="text" name="q" />
86          <input type="submit" value="Go" />
87          <input type="hidden" name="check_keywords" value="yes" />
88          <input type="hidden" name="area" value="default" />
89        </form>
90    </div>
91    <script type="text/javascript">$('.inline-search').show(0);</script>
92         |
93    </li>
94
95      </ul>
96    </div>
97
98    <div class="document">
99      <div class="documentwrapper">
100        <div class="bodywrapper">
101          <div class="body" role="main">
102
103  <div class="section" id="idle">
104<span id="id1"></span><h1>IDLE<a class="headerlink" href="#idle" title="Permalink to this headline">¶</a></h1>
105<p><strong>Source code:</strong> <a class="reference external" href="https://github.com/python/cpython/tree/main/Lib/idlelib/">Lib/idlelib/</a></p>
106<hr class="docutils" id="index-0" />
107<p>IDLE is Python’s Integrated Development and Learning Environment.</p>
108<p>IDLE has the following features:</p>
109<ul class="simple">
110<li><p>coded in 100% pure Python, using the <a class="reference internal" href="tkinter.html#module-tkinter" title="tkinter: Interface to Tcl/Tk for graphical user interfaces"><code class="xref py py-mod docutils literal notranslate"><span class="pre">tkinter</span></code></a> GUI toolkit</p></li>
111<li><p>cross-platform: works mostly the same on Windows, Unix, and macOS</p></li>
112<li><p>Python shell window (interactive interpreter) with colorizing
113of code input, output, and error messages</p></li>
114<li><p>multi-window text editor with multiple undo, Python colorizing,
115smart indent, call tips, auto completion, and other features</p></li>
116<li><p>search within any window, replace within editor windows, and search
117through multiple files (grep)</p></li>
118<li><p>debugger with persistent breakpoints, stepping, and viewing
119of global and local namespaces</p></li>
120<li><p>configuration, browsers, and other dialogs</p></li>
121</ul>
122<div class="section" id="menus">
123<h2>Menus<a class="headerlink" href="#menus" title="Permalink to this headline">¶</a></h2>
124<p>IDLE has two main window types, the Shell window and the Editor window.  It is
125possible to have multiple editor windows simultaneously.  On Windows and
126Linux, each has its own top menu.  Each menu documented below indicates
127which window type it is associated with.</p>
128<p>Output windows, such as used for Edit =&gt; Find in Files, are a subtype of editor
129window.  They currently have the same top menu but a different
130default title and context menu.</p>
131<p>On macOS, there is one application menu.  It dynamically changes according
132to the window currently selected.  It has an IDLE menu, and some entries
133described below are moved around to conform to Apple guidelines.</p>
134<div class="section" id="file-menu-shell-and-editor">
135<h3>File menu (Shell and Editor)<a class="headerlink" href="#file-menu-shell-and-editor" title="Permalink to this headline">¶</a></h3>
136<dl class="simple">
137<dt>New File</dt><dd><p>Create a new file editing window.</p>
138</dd>
139<dt>Open…</dt><dd><p>Open an existing file with an Open dialog.</p>
140</dd>
141<dt>Recent Files</dt><dd><p>Open a list of recent files.  Click one to open it.</p>
142</dd>
143<dt>Open Module…</dt><dd><p>Open an existing module (searches sys.path).</p>
144</dd>
145</dl>
146<dl class="simple" id="index-1">
147<dt>Class Browser</dt><dd><p>Show functions, classes, and methods in the current Editor file in a
148tree structure.  In the shell, open a module first.</p>
149</dd>
150<dt>Path Browser</dt><dd><p>Show sys.path directories, modules, functions, classes and methods in a
151tree structure.</p>
152</dd>
153<dt>Save</dt><dd><p>Save the current window to the associated file, if there is one.  Windows
154that have been changed since being opened or last saved have a * before
155and after the window title.  If there is no associated file,
156do Save As instead.</p>
157</dd>
158<dt>Save As…</dt><dd><p>Save the current window with a Save As dialog.  The file saved becomes the
159new associated file for the window.</p>
160</dd>
161<dt>Save Copy As…</dt><dd><p>Save the current window to different file without changing the associated
162file.</p>
163</dd>
164<dt>Print Window</dt><dd><p>Print the current window to the default printer.</p>
165</dd>
166<dt>Close Window</dt><dd><p>Close the current window (if an unsaved editor, ask to save; if an unsaved
167Shell, ask to quit execution).  Calling <code class="docutils literal notranslate"><span class="pre">exit()</span></code> or <code class="docutils literal notranslate"><span class="pre">close()</span></code> in the Shell
168window also closes Shell.  If this is the only window, also exit IDLE.</p>
169</dd>
170<dt>Exit IDLE</dt><dd><p>Close all windows and quit IDLE (ask to save unsaved edit windows).</p>
171</dd>
172</dl>
173</div>
174<div class="section" id="edit-menu-shell-and-editor">
175<h3>Edit menu (Shell and Editor)<a class="headerlink" href="#edit-menu-shell-and-editor" title="Permalink to this headline">¶</a></h3>
176<dl class="simple">
177<dt>Undo</dt><dd><p>Undo the last change to the current window.  A maximum of 1000 changes may
178be undone.</p>
179</dd>
180<dt>Redo</dt><dd><p>Redo the last undone change to the current window.</p>
181</dd>
182<dt>Cut</dt><dd><p>Copy selection into the system-wide clipboard; then delete the selection.</p>
183</dd>
184<dt>Copy</dt><dd><p>Copy selection into the system-wide clipboard.</p>
185</dd>
186<dt>Paste</dt><dd><p>Insert contents of the system-wide clipboard into the current window.</p>
187</dd>
188</dl>
189<p>The clipboard functions are also available in context menus.</p>
190<dl class="simple">
191<dt>Select All</dt><dd><p>Select the entire contents of the current window.</p>
192</dd>
193<dt>Find…</dt><dd><p>Open a search dialog with many options</p>
194</dd>
195<dt>Find Again</dt><dd><p>Repeat the last search, if there is one.</p>
196</dd>
197<dt>Find Selection</dt><dd><p>Search for the currently selected string, if there is one.</p>
198</dd>
199<dt>Find in Files…</dt><dd><p>Open a file search dialog.  Put results in a new output window.</p>
200</dd>
201<dt>Replace…</dt><dd><p>Open a search-and-replace dialog.</p>
202</dd>
203<dt>Go to Line</dt><dd><p>Move the cursor to the beginning of the line requested and make that
204line visible.  A request past the end of the file goes to the end.
205Clear any selection and update the line and column status.</p>
206</dd>
207<dt>Show Completions</dt><dd><p>Open a scrollable list allowing selection of existing names. See
208<a class="reference internal" href="#completions"><span class="std std-ref">Completions</span></a> in the Editing and navigation section below.</p>
209</dd>
210<dt>Expand Word</dt><dd><p>Expand a prefix you have typed to match a full word in the same window;
211repeat to get a different expansion.</p>
212</dd>
213<dt>Show call tip</dt><dd><p>After an unclosed parenthesis for a function, open a small window with
214function parameter hints.  See <a class="reference internal" href="#calltips"><span class="std std-ref">Calltips</span></a> in the
215Editing and navigation section below.</p>
216</dd>
217<dt>Show surrounding parens</dt><dd><p>Highlight the surrounding parenthesis.</p>
218</dd>
219</dl>
220</div>
221<div class="section" id="format-menu-editor-window-only">
222<span id="format-menu"></span><h3>Format menu (Editor window only)<a class="headerlink" href="#format-menu-editor-window-only" title="Permalink to this headline">¶</a></h3>
223<dl class="simple">
224<dt>Indent Region</dt><dd><p>Shift selected lines right by the indent width (default 4 spaces).</p>
225</dd>
226<dt>Dedent Region</dt><dd><p>Shift selected lines left by the indent width (default 4 spaces).</p>
227</dd>
228<dt>Comment Out Region</dt><dd><p>Insert ## in front of selected lines.</p>
229</dd>
230<dt>Uncomment Region</dt><dd><p>Remove leading # or ## from selected lines.</p>
231</dd>
232<dt>Tabify Region</dt><dd><p>Turn <em>leading</em> stretches of spaces into tabs. (Note: We recommend using
2334 space blocks to indent Python code.)</p>
234</dd>
235<dt>Untabify Region</dt><dd><p>Turn <em>all</em> tabs into the correct number of spaces.</p>
236</dd>
237<dt>Toggle Tabs</dt><dd><p>Open a dialog to switch between indenting with spaces and tabs.</p>
238</dd>
239<dt>New Indent Width</dt><dd><p>Open a dialog to change indent width. The accepted default by the Python
240community is 4 spaces.</p>
241</dd>
242<dt>Format Paragraph</dt><dd><p>Reformat the current blank-line-delimited paragraph in comment block or
243multiline string or selected line in a string.  All lines in the
244paragraph will be formatted to less than N columns, where N defaults to 72.</p>
245</dd>
246<dt>Strip trailing whitespace</dt><dd><p>Remove trailing space and other whitespace characters after the last
247non-whitespace character of a line by applying str.rstrip to each line,
248including lines within multiline strings.  Except for Shell windows,
249remove extra newlines at the end of the file.</p>
250</dd>
251</dl>
252</div>
253<div class="section" id="run-menu-editor-window-only">
254<span id="index-2"></span><h3>Run menu (Editor window only)<a class="headerlink" href="#run-menu-editor-window-only" title="Permalink to this headline">¶</a></h3>
255<dl class="simple" id="run-module">
256<dt>Run Module</dt><dd><p>Do <a class="reference internal" href="#check-module"><span class="std std-ref">Check Module</span></a>.  If no error, restart the shell to clean the
257environment, then execute the module.  Output is displayed in the Shell
258window.  Note that output requires use of <code class="docutils literal notranslate"><span class="pre">print</span></code> or <code class="docutils literal notranslate"><span class="pre">write</span></code>.
259When execution is complete, the Shell retains focus and displays a prompt.
260At this point, one may interactively explore the result of execution.
261This is similar to executing a file with <code class="docutils literal notranslate"><span class="pre">python</span> <span class="pre">-i</span> <span class="pre">file</span></code> at a command
262line.</p>
263</dd>
264</dl>
265<dl class="simple" id="run-custom">
266<dt>Run… Customized</dt><dd><p>Same as <a class="reference internal" href="#run-module"><span class="std std-ref">Run Module</span></a>, but run the module with customized
267settings.  <em>Command Line Arguments</em> extend <a class="reference internal" href="sys.html#sys.argv" title="sys.argv"><code class="xref py py-data docutils literal notranslate"><span class="pre">sys.argv</span></code></a> as if passed
268on a command line. The module can be run in the Shell without restarting.</p>
269</dd>
270</dl>
271<dl class="simple" id="check-module">
272<dt>Check Module</dt><dd><p>Check the syntax of the module currently open in the Editor window. If the
273module has not been saved IDLE will either prompt the user to save or
274autosave, as selected in the General tab of the Idle Settings dialog.  If
275there is a syntax error, the approximate location is indicated in the
276Editor window.</p>
277</dd>
278</dl>
279<dl class="simple" id="python-shell">
280<dt>Python Shell</dt><dd><p>Open or wake up the Python Shell window.</p>
281</dd>
282</dl>
283</div>
284<div class="section" id="shell-menu-shell-window-only">
285<h3>Shell menu (Shell window only)<a class="headerlink" href="#shell-menu-shell-window-only" title="Permalink to this headline">¶</a></h3>
286<dl class="simple">
287<dt>View Last Restart</dt><dd><p>Scroll the shell window to the last Shell restart.</p>
288</dd>
289<dt>Restart Shell</dt><dd><p>Restart the shell to clean the environment and reset display and exception handling.</p>
290</dd>
291<dt>Previous History</dt><dd><p>Cycle through earlier commands in history which match the current entry.</p>
292</dd>
293<dt>Next History</dt><dd><p>Cycle through later commands in history which match the current entry.</p>
294</dd>
295<dt>Interrupt Execution</dt><dd><p>Stop a running program.</p>
296</dd>
297</dl>
298</div>
299<div class="section" id="debug-menu-shell-window-only">
300<h3>Debug menu (Shell window only)<a class="headerlink" href="#debug-menu-shell-window-only" title="Permalink to this headline">¶</a></h3>
301<dl class="simple">
302<dt>Go to File/Line</dt><dd><p>Look on the current line. with the cursor, and the line above for a filename
303and line number.  If found, open the file if not already open, and show the
304line.  Use this to view source lines referenced in an exception traceback
305and lines found by Find in Files. Also available in the context menu of
306the Shell window and Output windows.</p>
307</dd>
308</dl>
309<dl class="simple" id="index-3">
310<dt>Debugger (toggle)</dt><dd><p>When activated, code entered in the Shell or run from an Editor will run
311under the debugger.  In the Editor, breakpoints can be set with the context
312menu.  This feature is still incomplete and somewhat experimental.</p>
313</dd>
314<dt>Stack Viewer</dt><dd><p>Show the stack traceback of the last exception in a tree widget, with
315access to locals and globals.</p>
316</dd>
317<dt>Auto-open Stack Viewer</dt><dd><p>Toggle automatically opening the stack viewer on an unhandled exception.</p>
318</dd>
319</dl>
320</div>
321<div class="section" id="options-menu-shell-and-editor">
322<h3>Options menu (Shell and Editor)<a class="headerlink" href="#options-menu-shell-and-editor" title="Permalink to this headline">¶</a></h3>
323<dl class="simple">
324<dt>Configure IDLE</dt><dd><p>Open a configuration dialog and change preferences for the following:
325fonts, indentation, keybindings, text color themes, startup windows and
326size, additional help sources, and extensions.  On macOS, open the
327configuration dialog by selecting Preferences in the application
328menu. For more details, see
329<a class="reference internal" href="#preferences"><span class="std std-ref">Setting preferences</span></a> under Help and preferences.</p>
330</dd>
331</dl>
332<p>Most configuration options apply to all windows or all future windows.
333The option items below only apply to the active window.</p>
334<dl class="simple">
335<dt>Show/Hide Code Context (Editor Window only)</dt><dd><p>Open a pane at the top of the edit window which shows the block context
336of the code which has scrolled above the top of the window.  See
337<a class="reference internal" href="#code-context"><span class="std std-ref">Code Context</span></a> in the Editing and Navigation section
338below.</p>
339</dd>
340<dt>Show/Hide Line Numbers (Editor Window only)</dt><dd><p>Open a column to the left of the edit window which shows the number
341of each line of text.  The default is off, which may be changed in the
342preferences (see <a class="reference internal" href="#preferences"><span class="std std-ref">Setting preferences</span></a>).</p>
343</dd>
344<dt>Zoom/Restore Height</dt><dd><p>Toggles the window between normal size and maximum height. The initial size
345defaults to 40 lines by 80 chars unless changed on the General tab of the
346Configure IDLE dialog.  The maximum height for a screen is determined by
347momentarily maximizing a window the first time one is zoomed on the screen.
348Changing screen settings may invalidate the saved height.  This toggle has
349no effect when a window is maximized.</p>
350</dd>
351</dl>
352</div>
353<div class="section" id="window-menu-shell-and-editor">
354<h3>Window menu (Shell and Editor)<a class="headerlink" href="#window-menu-shell-and-editor" title="Permalink to this headline">¶</a></h3>
355<p>Lists the names of all open windows; select one to bring it to the foreground
356(deiconifying it if necessary).</p>
357</div>
358<div class="section" id="help-menu-shell-and-editor">
359<h3>Help menu (Shell and Editor)<a class="headerlink" href="#help-menu-shell-and-editor" title="Permalink to this headline">¶</a></h3>
360<dl class="simple">
361<dt>About IDLE</dt><dd><p>Display version, copyright, license, credits, and more.</p>
362</dd>
363<dt>IDLE Help</dt><dd><p>Display this IDLE document, detailing the menu options, basic editing and
364navigation, and other tips.</p>
365</dd>
366<dt>Python Docs</dt><dd><p>Access local Python documentation, if installed, or start a web browser
367and open docs.python.org showing the latest Python documentation.</p>
368</dd>
369<dt>Turtle Demo</dt><dd><p>Run the turtledemo module with example Python code and turtle drawings.</p>
370</dd>
371</dl>
372<p>Additional help sources may be added here with the Configure IDLE dialog under
373the General tab. See the <a class="reference internal" href="#help-sources"><span class="std std-ref">Help sources</span></a> subsection below
374for more on Help menu choices.</p>
375</div>
376<div class="section" id="context-menus">
377<span id="index-4"></span><h3>Context Menus<a class="headerlink" href="#context-menus" title="Permalink to this headline">¶</a></h3>
378<p>Open a context menu by right-clicking in a window (Control-click on macOS).
379Context menus have the standard clipboard functions also on the Edit menu.</p>
380<dl class="simple">
381<dt>Cut</dt><dd><p>Copy selection into the system-wide clipboard; then delete the selection.</p>
382</dd>
383<dt>Copy</dt><dd><p>Copy selection into the system-wide clipboard.</p>
384</dd>
385<dt>Paste</dt><dd><p>Insert contents of the system-wide clipboard into the current window.</p>
386</dd>
387</dl>
388<p>Editor windows also have breakpoint functions.  Lines with a breakpoint set are
389specially marked.  Breakpoints only have an effect when running under the
390debugger.  Breakpoints for a file are saved in the user’s <code class="docutils literal notranslate"><span class="pre">.idlerc</span></code>
391directory.</p>
392<dl class="simple">
393<dt>Set Breakpoint</dt><dd><p>Set a breakpoint on the current line.</p>
394</dd>
395<dt>Clear Breakpoint</dt><dd><p>Clear the breakpoint on that line.</p>
396</dd>
397</dl>
398<p>Shell and Output windows also have the following.</p>
399<dl class="simple">
400<dt>Go to file/line</dt><dd><p>Same as in Debug menu.</p>
401</dd>
402</dl>
403<p>The Shell window also has an output squeezing facility explained in the <em>Python
404Shell window</em> subsection below.</p>
405<dl class="simple">
406<dt>Squeeze</dt><dd><p>If the cursor is over an output line, squeeze all the output between
407the code above and the prompt below down to a ‘Squeezed text’ label.</p>
408</dd>
409</dl>
410</div>
411</div>
412<div class="section" id="editing-and-navigation">
413<span id="id2"></span><h2>Editing and navigation<a class="headerlink" href="#editing-and-navigation" title="Permalink to this headline">¶</a></h2>
414<div class="section" id="editor-windows">
415<h3>Editor windows<a class="headerlink" href="#editor-windows" title="Permalink to this headline">¶</a></h3>
416<p>IDLE may open editor windows when it starts, depending on settings
417and how you start IDLE.  Thereafter, use the File menu.  There can be only
418one open editor window for a given file.</p>
419<p>The title bar contains the name of the file, the full path, and the version
420of Python and IDLE running the window.  The status bar contains the line
421number (‘Ln’) and column number (‘Col’).  Line numbers start with 1;
422column numbers with 0.</p>
423<p>IDLE assumes that files with a known .py* extension contain Python code
424and that other files do not.  Run Python code with the Run menu.</p>
425</div>
426<div class="section" id="key-bindings">
427<h3>Key bindings<a class="headerlink" href="#key-bindings" title="Permalink to this headline">¶</a></h3>
428<p>In this section, ‘C’ refers to the <kbd class="kbd docutils literal notranslate">Control</kbd> key on Windows and Unix and
429the <kbd class="kbd docutils literal notranslate">Command</kbd> key on macOS.</p>
430<ul>
431<li><p><kbd class="kbd docutils literal notranslate">Backspace</kbd> deletes to the left; <kbd class="kbd docutils literal notranslate">Del</kbd> deletes to the right</p></li>
432<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">Backspace</kbd></kbd> delete word left; <kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">Del</kbd></kbd> delete word to the right</p></li>
433<li><p>Arrow keys and <kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">Page</kbd> <kbd class="kbd docutils literal notranslate">Up</kbd></kbd>/<kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">Page</kbd> <kbd class="kbd docutils literal notranslate">Down</kbd></kbd> to move around</p></li>
434<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">LeftArrow</kbd></kbd> and <kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">RightArrow</kbd></kbd> moves by words</p></li>
435<li><p><kbd class="kbd docutils literal notranslate">Home</kbd>/<kbd class="kbd docutils literal notranslate">End</kbd> go to begin/end of line</p></li>
436<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">Home</kbd></kbd>/<kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">End</kbd></kbd> go to begin/end of file</p></li>
437<li><p>Some useful Emacs bindings are inherited from Tcl/Tk:</p>
438<blockquote>
439<div><ul class="simple">
440<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">a</kbd></kbd> beginning of line</p></li>
441<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">e</kbd></kbd> end of line</p></li>
442<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">k</kbd></kbd> kill line (but doesn’t put it in clipboard)</p></li>
443<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">l</kbd></kbd> center window around the insertion point</p></li>
444<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">b</kbd></kbd> go backward one character without deleting (usually you can
445also use the cursor key for this)</p></li>
446<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">f</kbd></kbd> go forward one character without deleting (usually you can
447also use the cursor key for this)</p></li>
448<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">p</kbd></kbd> go up one line (usually you can also use the cursor key for
449this)</p></li>
450<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">d</kbd></kbd> delete next character</p></li>
451</ul>
452</div></blockquote>
453</li>
454</ul>
455<p>Standard keybindings (like <kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">c</kbd></kbd> to copy and <kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">v</kbd></kbd> to paste)
456may work.  Keybindings are selected in the Configure IDLE dialog.</p>
457</div>
458<div class="section" id="automatic-indentation">
459<h3>Automatic indentation<a class="headerlink" href="#automatic-indentation" title="Permalink to this headline">¶</a></h3>
460<p>After a block-opening statement, the next line is indented by 4 spaces (in the
461Python Shell window by one tab).  After certain keywords (break, return etc.)
462the next line is dedented.  In leading indentation, <kbd class="kbd docutils literal notranslate">Backspace</kbd> deletes up
463to 4 spaces if they are there. <kbd class="kbd docutils literal notranslate">Tab</kbd> inserts spaces (in the Python
464Shell window one tab), number depends on Indent width. Currently, tabs
465are restricted to four spaces due to Tcl/Tk limitations.</p>
466<p>See also the indent/dedent region commands on the
467<a class="reference internal" href="#format-menu"><span class="std std-ref">Format menu</span></a>.</p>
468</div>
469<div class="section" id="completions">
470<span id="id3"></span><h3>Completions<a class="headerlink" href="#completions" title="Permalink to this headline">¶</a></h3>
471<p>Completions are supplied, when requested and available, for module
472names, attributes of classes or functions, or filenames.  Each request
473method displays a completion box with existing names.  (See tab
474completions below for an exception.) For any box, change the name
475being completed and the item highlighted in the box by
476typing and deleting characters; by hitting <kbd class="kbd docutils literal notranslate">Up</kbd>, <kbd class="kbd docutils literal notranslate">Down</kbd>,
477<kbd class="kbd docutils literal notranslate">PageUp</kbd>, <kbd class="kbd docutils literal notranslate">PageDown</kbd>, <kbd class="kbd docutils literal notranslate">Home</kbd>, and <kbd class="kbd docutils literal notranslate">End</kbd> keys;
478and by a single click within the box.  Close the box with <kbd class="kbd docutils literal notranslate">Escape</kbd>,
479<kbd class="kbd docutils literal notranslate">Enter</kbd>, and double <kbd class="kbd docutils literal notranslate">Tab</kbd> keys or clicks outside the box.
480A double click within the box selects and closes.</p>
481<p>One way to open a box is to type a key character and wait for a
482predefined interval.  This defaults to 2 seconds; customize it
483in the settings dialog.  (To prevent auto popups, set the delay to a
484large number of milliseconds, such as 100000000.) For imported module
485names or class or function attributes, type ‘.’.
486For filenames in the root directory, type <a class="reference internal" href="os.html#os.sep" title="os.sep"><code class="xref py py-data docutils literal notranslate"><span class="pre">os.sep</span></code></a> or
487<a class="reference internal" href="os.html#os.altsep" title="os.altsep"><code class="xref py py-data docutils literal notranslate"><span class="pre">os.altsep</span></code></a> immediately after an opening quote.  (On Windows,
488one can specify a drive first.)  Move into subdirectories by typing a
489directory name and a separator.</p>
490<p>Instead of waiting, or after a box is closed, open a completion box
491immediately with Show Completions on the Edit menu.  The default hot
492key is <kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">space</kbd></kbd>.  If one types a prefix for the desired name
493before opening the box, the first match or near miss is made visible.
494The result is the same as if one enters a prefix
495after the box is displayed.  Show Completions after a quote completes
496filenames in the current directory instead of a root directory.</p>
497<p>Hitting <kbd class="kbd docutils literal notranslate">Tab</kbd> after a prefix usually has the same effect as Show
498Completions.  (With no prefix, it indents.)  However, if there is only
499one match to the prefix, that match is immediately added to the editor
500text without opening a box.</p>
501<p>Invoking ‘Show Completions’, or hitting <kbd class="kbd docutils literal notranslate">Tab</kbd> after a prefix,
502outside of a string and without a preceding ‘.’ opens a box with
503keywords, builtin names, and available module-level names.</p>
504<p>When editing code in an editor (as oppose to Shell), increase the
505available module-level names by running your code
506and not restarting the Shell thereafter.  This is especially useful
507after adding imports at the top of a file.  This also increases
508possible attribute completions.</p>
509<p>Completion boxes initially exclude names beginning with ‘_’ or, for
510modules, not included in ‘__all__’.  The hidden names can be accessed
511by typing ‘_’ after ‘.’, either before or after the box is opened.</p>
512</div>
513<div class="section" id="calltips">
514<span id="id4"></span><h3>Calltips<a class="headerlink" href="#calltips" title="Permalink to this headline">¶</a></h3>
515<p>A calltip is shown automatically when one types <kbd class="kbd docutils literal notranslate">(</kbd> after the name
516of an <em>accessible</em> function.  A function name expression may include
517dots and subscripts.  A calltip remains until it is clicked, the cursor
518is moved out of the argument area, or <kbd class="kbd docutils literal notranslate">)</kbd> is typed.  Whenever the
519cursor is in the argument part of a definition, select Edit and “Show
520Call Tip” on the menu or enter its shortcut to display a calltip.</p>
521<p>The calltip consists of the function’s signature and docstring up to
522the latter’s first blank line or the fifth non-blank line.  (Some builtin
523functions lack an accessible signature.)  A ‘/’ or ‘*’ in the signature
524indicates that the preceding or following arguments are passed by
525position or name (keyword) only.  Details are subject to change.</p>
526<p>In Shell, the accessible functions depends on what modules have been
527imported into the user process, including those imported by Idle itself,
528and which definitions have been run, all since the last restart.</p>
529<p>For example, restart the Shell and enter <code class="docutils literal notranslate"><span class="pre">itertools.count(</span></code>.  A calltip
530appears because Idle imports itertools into the user process for its own
531use.  (This could change.)  Enter <code class="docutils literal notranslate"><span class="pre">turtle.write(</span></code> and nothing appears.
532Idle does not itself import turtle.  The menu entry and shortcut also do
533nothing.  Enter <code class="docutils literal notranslate"><span class="pre">import</span> <span class="pre">turtle</span></code>.  Thereafter, <code class="docutils literal notranslate"><span class="pre">turtle.write(</span></code>
534will display a calltip.</p>
535<p>In an editor, import statements have no effect until one runs the file.
536One might want to run a file after writing import statements, after
537adding function definitions, or after opening an existing file.</p>
538</div>
539<div class="section" id="code-context">
540<span id="id5"></span><h3>Code Context<a class="headerlink" href="#code-context" title="Permalink to this headline">¶</a></h3>
541<p>Within an editor window containing Python code, code context can be toggled
542in order to show or hide a pane at the top of the window.  When shown, this
543pane freezes the opening lines for block code, such as those beginning with
544<code class="docutils literal notranslate"><span class="pre">class</span></code>, <code class="docutils literal notranslate"><span class="pre">def</span></code>, or <code class="docutils literal notranslate"><span class="pre">if</span></code> keywords, that would have otherwise scrolled
545out of view.  The size of the pane will be expanded and contracted as needed
546to show the all current levels of context, up to the maximum number of
547lines defined in the Configure IDLE dialog (which defaults to 15).  If there
548are no current context lines and the feature is toggled on, a single blank
549line will display.  Clicking on a line in the context pane will move that
550line to the top of the editor.</p>
551<p>The text and background colors for the context pane can be configured under
552the Highlights tab in the Configure IDLE dialog.</p>
553</div>
554<div class="section" id="python-shell-window">
555<h3>Python Shell window<a class="headerlink" href="#python-shell-window" title="Permalink to this headline">¶</a></h3>
556<p>With IDLE’s Shell, one enters, edits, and recalls complete statements.
557Most consoles and terminals only work with a single physical line at a time.</p>
558<p>When one pastes code into Shell, it is not compiled and possibly executed
559until one hits <kbd class="kbd docutils literal notranslate">Return</kbd>.  One may edit pasted code first.
560If one pastes more that one statement into Shell, the result will be a
561<a class="reference internal" href="exceptions.html#SyntaxError" title="SyntaxError"><code class="xref py py-exc docutils literal notranslate"><span class="pre">SyntaxError</span></code></a> when multiple statements are compiled as if they were one.</p>
562<p>The editing features described in previous subsections work when entering
563code interactively.  IDLE’s Shell window also responds to the following keys.</p>
564<ul>
565<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">c</kbd></kbd> interrupts executing command</p></li>
566<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">d</kbd></kbd> sends end-of-file; closes window if typed at a <code class="docutils literal notranslate"><span class="pre">&gt;&gt;&gt;</span></code> prompt</p></li>
567<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">Alt</kbd>-<kbd class="kbd docutils literal notranslate">/</kbd></kbd> (Expand word) is also useful to reduce typing</p>
568<p>Command history</p>
569<ul class="simple">
570<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">Alt</kbd>-<kbd class="kbd docutils literal notranslate">p</kbd></kbd> retrieves previous command matching what you have typed. On
571macOS use <kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">p</kbd></kbd>.</p></li>
572<li><p><kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">Alt</kbd>-<kbd class="kbd docutils literal notranslate">n</kbd></kbd> retrieves next. On macOS use <kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">C</kbd>-<kbd class="kbd docutils literal notranslate">n</kbd></kbd>.</p></li>
573<li><p><kbd class="kbd docutils literal notranslate">Return</kbd> while on any previous command retrieves that command</p></li>
574</ul>
575</li>
576</ul>
577</div>
578<div class="section" id="text-colors">
579<h3>Text colors<a class="headerlink" href="#text-colors" title="Permalink to this headline">¶</a></h3>
580<p>Idle defaults to black on white text, but colors text with special meanings.
581For the shell, these are shell output, shell error, user output, and
582user error.  For Python code, at the shell prompt or in an editor, these are
583keywords, builtin class and function names, names following <code class="docutils literal notranslate"><span class="pre">class</span></code> and
584<code class="docutils literal notranslate"><span class="pre">def</span></code>, strings, and comments. For any text window, these are the cursor (when
585present), found text (when possible), and selected text.</p>
586<p>IDLE also highlights the <a class="reference internal" href="../reference/lexical_analysis.html#soft-keywords"><span class="std std-ref">soft keywords</span></a> <a class="reference internal" href="../reference/compound_stmts.html#match"><code class="xref std std-keyword docutils literal notranslate"><span class="pre">match</span></code></a>,
587<a class="reference internal" href="../reference/compound_stmts.html#match"><code class="xref std std-keyword docutils literal notranslate"><span class="pre">case</span></code></a>, and <a class="reference internal" href="../reference/compound_stmts.html#wildcard-patterns"><code class="xref std std-keyword docutils literal notranslate"><span class="pre">_</span></code></a> in
588pattern-matching statements. However, this highlighting is not perfect and
589will be incorrect in some rare cases, including some <code class="docutils literal notranslate"><span class="pre">_</span></code>-s in <code class="docutils literal notranslate"><span class="pre">case</span></code>
590patterns.</p>
591<p>Text coloring is done in the background, so uncolorized text is occasionally
592visible.  To change the color scheme, use the Configure IDLE dialog
593Highlighting tab.  The marking of debugger breakpoint lines in the editor and
594text in popups and dialogs is not user-configurable.</p>
595</div>
596</div>
597<div class="section" id="startup-and-code-execution">
598<h2>Startup and code execution<a class="headerlink" href="#startup-and-code-execution" title="Permalink to this headline">¶</a></h2>
599<p>Upon startup with the <code class="docutils literal notranslate"><span class="pre">-s</span></code> option, IDLE will execute the file referenced by
600the environment variables <span class="target" id="index-5"></span><code class="xref std std-envvar docutils literal notranslate"><span class="pre">IDLESTARTUP</span></code> or <span class="target" id="index-6"></span><a class="reference internal" href="../using/cmdline.html#envvar-PYTHONSTARTUP"><code class="xref std std-envvar docutils literal notranslate"><span class="pre">PYTHONSTARTUP</span></code></a>.
601IDLE first checks for <code class="docutils literal notranslate"><span class="pre">IDLESTARTUP</span></code>; if <code class="docutils literal notranslate"><span class="pre">IDLESTARTUP</span></code> is present the file
602referenced is run.  If <code class="docutils literal notranslate"><span class="pre">IDLESTARTUP</span></code> is not present, IDLE checks for
603<code class="docutils literal notranslate"><span class="pre">PYTHONSTARTUP</span></code>.  Files referenced by these environment variables are
604convenient places to store functions that are used frequently from the IDLE
605shell, or for executing import statements to import common modules.</p>
606<p>In addition, <code class="docutils literal notranslate"><span class="pre">Tk</span></code> also loads a startup file if it is present.  Note that the
607Tk file is loaded unconditionally.  This additional file is <code class="docutils literal notranslate"><span class="pre">.Idle.py</span></code> and is
608looked for in the user’s home directory.  Statements in this file will be
609executed in the Tk namespace, so this file is not useful for importing
610functions to be used from IDLE’s Python shell.</p>
611<div class="section" id="command-line-usage">
612<h3>Command line usage<a class="headerlink" href="#command-line-usage" title="Permalink to this headline">¶</a></h3>
613<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>idle.py [-c command] [-d] [-e] [-h] [-i] [-r file] [-s] [-t title] [-] [arg] ...
614
615-c command  run command in the shell window
616-d          enable debugger and open shell window
617-e          open editor window
618-h          print help message with legal combinations and exit
619-i          open shell window
620-r file     run file in shell window
621-s          run $IDLESTARTUP or $PYTHONSTARTUP first, in shell window
622-t title    set title of shell window
623-           run stdin in shell (- must be last option before args)
624</pre></div>
625</div>
626<p>If there are arguments:</p>
627<ul class="simple">
628<li><p>If <code class="docutils literal notranslate"><span class="pre">-</span></code>, <code class="docutils literal notranslate"><span class="pre">-c</span></code>, or <code class="docutils literal notranslate"><span class="pre">r</span></code> is used, all arguments are placed in
629<code class="docutils literal notranslate"><span class="pre">sys.argv[1:...]</span></code> and <code class="docutils literal notranslate"><span class="pre">sys.argv[0]</span></code> is set to <code class="docutils literal notranslate"><span class="pre">''</span></code>, <code class="docutils literal notranslate"><span class="pre">'-c'</span></code>,
630or <code class="docutils literal notranslate"><span class="pre">'-r'</span></code>.  No editor window is opened, even if that is the default
631set in the Options dialog.</p></li>
632<li><p>Otherwise, arguments are files opened for editing and
633<code class="docutils literal notranslate"><span class="pre">sys.argv</span></code> reflects the arguments passed to IDLE itself.</p></li>
634</ul>
635</div>
636<div class="section" id="startup-failure">
637<h3>Startup failure<a class="headerlink" href="#startup-failure" title="Permalink to this headline">¶</a></h3>
638<p>IDLE uses a socket to communicate between the IDLE GUI process and the user
639code execution process.  A connection must be established whenever the Shell
640starts or restarts.  (The latter is indicated by a divider line that says
641‘RESTART’). If the user process fails to connect to the GUI process, it
642usually displays a <code class="docutils literal notranslate"><span class="pre">Tk</span></code> error box with a ‘cannot connect’ message
643that directs the user here.  It then exits.</p>
644<p>One specific connection failure on Unix systems results from
645misconfigured masquerading rules somewhere in a system’s network setup.
646When IDLE is started from a terminal, one will see a message starting
647with <code class="docutils literal notranslate"><span class="pre">**</span> <span class="pre">Invalid</span> <span class="pre">host:</span></code>.
648The valid value is <code class="docutils literal notranslate"><span class="pre">127.0.0.1</span> <span class="pre">(idlelib.rpc.LOCALHOST)</span></code>.
649One can diagnose with <code class="docutils literal notranslate"><span class="pre">tcpconnect</span> <span class="pre">-irv</span> <span class="pre">127.0.0.1</span> <span class="pre">6543</span></code> in one
650terminal window and <code class="docutils literal notranslate"><span class="pre">tcplisten</span> <span class="pre">&lt;same</span> <span class="pre">args&gt;</span></code> in another.</p>
651<p>A common cause of failure is a user-written file with the same name as a
652standard library module, such as <em>random.py</em> and <em>tkinter.py</em>. When such a
653file is located in the same directory as a file that is about to be run,
654IDLE cannot import the stdlib file.  The current fix is to rename the
655user file.</p>
656<p>Though less common than in the past, an antivirus or firewall program may
657stop the connection.  If the program cannot be taught to allow the
658connection, then it must be turned off for IDLE to work.  It is safe to
659allow this internal connection because no data is visible on external
660ports.  A similar problem is a network mis-configuration that blocks
661connections.</p>
662<p>Python installation issues occasionally stop IDLE: multiple versions can
663clash, or a single installation might need admin access.  If one undo the
664clash, or cannot or does not want to run as admin, it might be easiest to
665completely remove Python and start over.</p>
666<p>A zombie pythonw.exe process could be a problem.  On Windows, use Task
667Manager to check for one and stop it if there is.  Sometimes a restart
668initiated by a program crash or Keyboard Interrupt (control-C) may fail
669to connect.  Dismissing the error box or using Restart Shell on the Shell
670menu may fix a temporary problem.</p>
671<p>When IDLE first starts, it attempts to read user configuration files in
672<code class="docutils literal notranslate"><span class="pre">~/.idlerc/</span></code> (~ is one’s home directory).  If there is a problem, an error
673message should be displayed.  Leaving aside random disk glitches, this can
674be prevented by never editing the files by hand.  Instead, use the
675configuration dialog, under Options.  Once there is an error in a user
676configuration file, the best solution may be to delete it and start over
677with the settings dialog.</p>
678<p>If IDLE quits with no message, and it was not started from a console, try
679starting it from a console or terminal (<code class="docutils literal notranslate"><span class="pre">python</span> <span class="pre">-m</span> <span class="pre">idlelib</span></code>) and see if
680this results in an error message.</p>
681<p>On Unix-based systems with tcl/tk older than <code class="docutils literal notranslate"><span class="pre">8.6.11</span></code> (see
682<code class="docutils literal notranslate"><span class="pre">About</span> <span class="pre">IDLE</span></code>) certain characters of certain fonts can cause
683a tk failure with a message to the terminal.  This can happen either
684if one starts IDLE to edit a file with such a character or later
685when entering such a character.  If one cannot upgrade tcl/tk,
686then re-configure IDLE to use a font that works better.</p>
687</div>
688<div class="section" id="running-user-code">
689<h3>Running user code<a class="headerlink" href="#running-user-code" title="Permalink to this headline">¶</a></h3>
690<p>With rare exceptions, the result of executing Python code with IDLE is
691intended to be the same as executing the same code by the default method,
692directly with Python in a text-mode system console or terminal window.
693However, the different interface and operation occasionally affect
694visible results.  For instance, <code class="docutils literal notranslate"><span class="pre">sys.modules</span></code> starts with more entries,
695and <code class="docutils literal notranslate"><span class="pre">threading.active_count()</span></code> returns 2 instead of 1.</p>
696<p>By default, IDLE runs user code in a separate OS process rather than in
697the user interface process that runs the shell and editor.  In the execution
698process, it replaces <code class="docutils literal notranslate"><span class="pre">sys.stdin</span></code>, <code class="docutils literal notranslate"><span class="pre">sys.stdout</span></code>, and <code class="docutils literal notranslate"><span class="pre">sys.stderr</span></code>
699with objects that get input from and send output to the Shell window.
700The original values stored in <code class="docutils literal notranslate"><span class="pre">sys.__stdin__</span></code>, <code class="docutils literal notranslate"><span class="pre">sys.__stdout__</span></code>, and
701<code class="docutils literal notranslate"><span class="pre">sys.__stderr__</span></code> are not touched, but may be <code class="docutils literal notranslate"><span class="pre">None</span></code>.</p>
702<p>Sending print output from one process to a text widget in another is
703slower than printing to a system terminal in the same process.
704This has the most effect when printing multiple arguments, as the string
705for each argument, each separator, the newline are sent separately.
706For development, this is usually not a problem, but if one wants to
707print faster in IDLE, format and join together everything one wants
708displayed together and then print a single string.  Both format strings
709and <a class="reference internal" href="stdtypes.html#str.join" title="str.join"><code class="xref py py-meth docutils literal notranslate"><span class="pre">str.join()</span></code></a> can help combine fields and lines.</p>
710<p>IDLE’s standard stream replacements are not inherited by subprocesses
711created in the execution process, whether directly by user code or by
712modules such as multiprocessing.  If such subprocess use <code class="docutils literal notranslate"><span class="pre">input</span></code> from
713sys.stdin or <code class="docutils literal notranslate"><span class="pre">print</span></code> or <code class="docutils literal notranslate"><span class="pre">write</span></code> to sys.stdout or sys.stderr,
714IDLE should be started in a command line window.  The secondary subprocess
715will then be attached to that window for input and output.</p>
716<p>If <code class="docutils literal notranslate"><span class="pre">sys</span></code> is reset by user code, such as with <code class="docutils literal notranslate"><span class="pre">importlib.reload(sys)</span></code>,
717IDLE’s changes are lost and input from the keyboard and output to the screen
718will not work correctly.</p>
719<p>When Shell has the focus, it controls the keyboard and screen.  This is
720normally transparent, but functions that directly access the keyboard
721and screen will not work.  These include system-specific functions that
722determine whether a key has been pressed and if so, which.</p>
723<p>The IDLE code running in the execution process adds frames to the call stack
724that would not be there otherwise.  IDLE wraps <code class="docutils literal notranslate"><span class="pre">sys.getrecursionlimit</span></code> and
725<code class="docutils literal notranslate"><span class="pre">sys.setrecursionlimit</span></code> to reduce the effect of the additional stack
726frames.</p>
727<p>When user code raises SystemExit either directly or by calling sys.exit,
728IDLE returns to a Shell prompt instead of exiting.</p>
729</div>
730<div class="section" id="user-output-in-shell">
731<h3>User output in Shell<a class="headerlink" href="#user-output-in-shell" title="Permalink to this headline">¶</a></h3>
732<p>When a program outputs text, the result is determined by the
733corresponding output device.  When IDLE executes user code, <code class="docutils literal notranslate"><span class="pre">sys.stdout</span></code>
734and <code class="docutils literal notranslate"><span class="pre">sys.stderr</span></code> are connected to the display area of IDLE’s Shell.  Some of
735its features are inherited from the underlying Tk Text widget.  Others
736are programmed additions.  Where it matters, Shell is designed for development
737rather than production runs.</p>
738<p>For instance, Shell never throws away output.  A program that sends unlimited
739output to Shell will eventually fill memory, resulting in a memory error.
740In contrast, some system text windows only keep the last n lines of output.
741A Windows console, for instance, keeps a user-settable 1 to 9999 lines,
742with 300 the default.</p>
743<p>A Tk Text widget, and hence IDLE’s Shell, displays characters (codepoints) in
744the BMP (Basic Multilingual Plane) subset of Unicode.  Which characters are
745displayed with a proper glyph and which with a replacement box depends on the
746operating system and installed fonts.  Tab characters cause the following text
747to begin after the next tab stop. (They occur every 8 ‘characters’).  Newline
748characters cause following text to appear on a new line.  Other control
749characters are ignored or displayed as a space, box, or something else,
750depending on the operating system and font.  (Moving the text cursor through
751such output with arrow keys may exhibit some surprising spacing behavior.)</p>
752<div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">s</span> <span class="o">=</span> <span class="s1">&#39;a</span><span class="se">\t</span><span class="s1">b</span><span class="se">\a</span><span class="s1">&lt;</span><span class="se">\x02</span><span class="s1">&gt;&lt;</span><span class="se">\r</span><span class="s1">&gt;</span><span class="se">\b</span><span class="s1">c</span><span class="se">\n</span><span class="s1">d&#39;</span>  <span class="c1"># Enter 22 chars.</span>
753<span class="gp">&gt;&gt;&gt; </span><span class="nb">len</span><span class="p">(</span><span class="n">s</span><span class="p">)</span>
754<span class="go">14</span>
755<span class="gp">&gt;&gt;&gt; </span><span class="n">s</span>  <span class="c1"># Display repr(s)</span>
756<span class="go">&#39;a\tb\x07&lt;\x02&gt;&lt;\r&gt;\x08c\nd&#39;</span>
757<span class="gp">&gt;&gt;&gt; </span><span class="nb">print</span><span class="p">(</span><span class="n">s</span><span class="p">,</span> <span class="n">end</span><span class="o">=</span><span class="s1">&#39;&#39;</span><span class="p">)</span>  <span class="c1"># Display s as is.</span>
758<span class="go"># Result varies by OS and font.  Try it.</span>
759</pre></div>
760</div>
761<p>The <code class="docutils literal notranslate"><span class="pre">repr</span></code> function is used for interactive echo of expression
762values.  It returns an altered version of the input string in which
763control codes, some BMP codepoints, and all non-BMP codepoints are
764replaced with escape codes. As demonstrated above, it allows one to
765identify the characters in a string, regardless of how they are displayed.</p>
766<p>Normal and error output are generally kept separate (on separate lines)
767from code input and each other.  They each get different highlight colors.</p>
768<p>For SyntaxError tracebacks, the normal ‘^’ marking where the error was
769detected is replaced by coloring the text with an error highlight.
770When code run from a file causes other exceptions, one may right click
771on a traceback line to jump to the corresponding line in an IDLE editor.
772The file will be opened if necessary.</p>
773<p>Shell has a special facility for squeezing output lines down to a
774‘Squeezed text’ label.  This is done automatically
775for output over N lines (N = 50 by default).
776N can be changed in the PyShell section of the General
777page of the Settings dialog.  Output with fewer lines can be squeezed by
778right clicking on the output.  This can be useful lines long enough to slow
779down scrolling.</p>
780<p>Squeezed output is expanded in place by double-clicking the label.
781It can also be sent to the clipboard or a separate view window by
782right-clicking the label.</p>
783</div>
784<div class="section" id="developing-tkinter-applications">
785<h3>Developing tkinter applications<a class="headerlink" href="#developing-tkinter-applications" title="Permalink to this headline">¶</a></h3>
786<p>IDLE is intentionally different from standard Python in order to
787facilitate development of tkinter programs.  Enter <code class="docutils literal notranslate"><span class="pre">import</span> <span class="pre">tkinter</span> <span class="pre">as</span> <span class="pre">tk;</span>
788<span class="pre">root</span> <span class="pre">=</span> <span class="pre">tk.Tk()</span></code> in standard Python and nothing appears.  Enter the same
789in IDLE and a tk window appears.  In standard Python, one must also enter
790<code class="docutils literal notranslate"><span class="pre">root.update()</span></code> to see the window.  IDLE does the equivalent in the
791background, about 20 times a second, which is about every 50 milliseconds.
792Next enter <code class="docutils literal notranslate"><span class="pre">b</span> <span class="pre">=</span> <span class="pre">tk.Button(root,</span> <span class="pre">text='button');</span> <span class="pre">b.pack()</span></code>.  Again,
793nothing visibly changes in standard Python until one enters <code class="docutils literal notranslate"><span class="pre">root.update()</span></code>.</p>
794<p>Most tkinter programs run <code class="docutils literal notranslate"><span class="pre">root.mainloop()</span></code>, which usually does not
795return until the tk app is destroyed.  If the program is run with
796<code class="docutils literal notranslate"><span class="pre">python</span> <span class="pre">-i</span></code> or from an IDLE editor, a <code class="docutils literal notranslate"><span class="pre">&gt;&gt;&gt;</span></code> shell prompt does not
797appear until <code class="docutils literal notranslate"><span class="pre">mainloop()</span></code> returns, at which time there is nothing left
798to interact with.</p>
799<p>When running a tkinter program from an IDLE editor, one can comment out
800the mainloop call.  One then gets a shell prompt immediately and can
801interact with the live application.  One just has to remember to
802re-enable the mainloop call when running in standard Python.</p>
803</div>
804<div class="section" id="running-without-a-subprocess">
805<h3>Running without a subprocess<a class="headerlink" href="#running-without-a-subprocess" title="Permalink to this headline">¶</a></h3>
806<p>By default, IDLE executes user code in a separate subprocess via a socket,
807which uses the internal loopback interface.  This connection is not
808externally visible and no data is sent to or received from the internet.
809If firewall software complains anyway, you can ignore it.</p>
810<p>If the attempt to make the socket connection fails, Idle will notify you.
811Such failures are sometimes transient, but if persistent, the problem
812may be either a firewall blocking the connection or misconfiguration of
813a particular system.  Until the problem is fixed, one can run Idle with
814the -n command line switch.</p>
815<p>If IDLE is started with the -n command line switch it will run in a
816single process and will not create the subprocess which runs the RPC
817Python execution server.  This can be useful if Python cannot create
818the subprocess or the RPC socket interface on your platform.  However,
819in this mode user code is not isolated from IDLE itself.  Also, the
820environment is not restarted when Run/Run Module (F5) is selected.  If
821your code has been modified, you must reload() the affected modules and
822re-import any specific items (e.g. from foo import baz) if the changes
823are to take effect.  For these reasons, it is preferable to run IDLE
824with the default subprocess if at all possible.</p>
825<div class="deprecated">
826<p><span class="versionmodified deprecated">Deprecated since version 3.4.</span></p>
827</div>
828</div>
829</div>
830<div class="section" id="help-and-preferences">
831<h2>Help and preferences<a class="headerlink" href="#help-and-preferences" title="Permalink to this headline">¶</a></h2>
832<div class="section" id="help-sources">
833<span id="id6"></span><h3>Help sources<a class="headerlink" href="#help-sources" title="Permalink to this headline">¶</a></h3>
834<p>Help menu entry “IDLE Help” displays a formatted html version of the
835IDLE chapter of the Library Reference.  The result, in a read-only
836tkinter text window, is close to what one sees in a web browser.
837Navigate through the text with a mousewheel,
838the scrollbar, or up and down arrow keys held down.
839Or click the TOC (Table of Contents) button and select a section
840header in the opened box.</p>
841<p>Help menu entry “Python Docs” opens the extensive sources of help,
842including tutorials, available at <code class="docutils literal notranslate"><span class="pre">docs.python.org/x.y</span></code>, where ‘x.y843is the currently running Python version.  If your system
844has an off-line copy of the docs (this may be an installation option),
845that will be opened instead.</p>
846<p>Selected URLs can be added or removed from the help menu at any time using the
847General tab of the Configure IDLE dialog.</p>
848</div>
849<div class="section" id="setting-preferences">
850<span id="preferences"></span><h3>Setting preferences<a class="headerlink" href="#setting-preferences" title="Permalink to this headline">¶</a></h3>
851<p>The font preferences, highlighting, keys, and general preferences can be
852changed via Configure IDLE on the Option menu.
853Non-default user settings are saved in a <code class="docutils literal notranslate"><span class="pre">.idlerc</span></code> directory in the user’s
854home directory.  Problems caused by bad user configuration files are solved
855by editing or deleting one or more of the files in <code class="docutils literal notranslate"><span class="pre">.idlerc</span></code>.</p>
856<p>On the Font tab, see the text sample for the effect of font face and size
857on multiple characters in multiple languages.  Edit the sample to add
858other characters of personal interest.  Use the sample to select
859monospaced fonts.  If particular characters have problems in Shell or an
860editor, add them to the top of the sample and try changing first size
861and then font.</p>
862<p>On the Highlights and Keys tab, select a built-in or custom color theme
863and key set.  To use a newer built-in color theme or key set with older
864IDLEs, save it as a new custom theme or key set and it well be accessible
865to older IDLEs.</p>
866</div>
867<div class="section" id="idle-on-macos">
868<h3>IDLE on macOS<a class="headerlink" href="#idle-on-macos" title="Permalink to this headline">¶</a></h3>
869<p>Under System Preferences: Dock, one can set “Prefer tabs when opening
870documents” to “Always”.  This setting is not compatible with the tk/tkinter
871GUI framework used by IDLE, and it breaks a few IDLE features.</p>
872</div>
873<div class="section" id="extensions">
874<h3>Extensions<a class="headerlink" href="#extensions" title="Permalink to this headline">¶</a></h3>
875<p>IDLE contains an extension facility.  Preferences for extensions can be
876changed with the Extensions tab of the preferences dialog. See the
877beginning of config-extensions.def in the idlelib directory for further
878information.  The only current default extension is zzdummy, an example
879also used for testing.</p>
880</div>
881</div>
882</div>
883
884
885            <div class="clearer"></div>
886          </div>
887        </div>
888      </div>
889      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
890        <div class="sphinxsidebarwrapper">
891  <h3><a href="../contents.html">Table of Contents</a></h3>
892  <ul>
893<li><a class="reference internal" href="#">IDLE</a><ul>
894<li><a class="reference internal" href="#menus">Menus</a><ul>
895<li><a class="reference internal" href="#file-menu-shell-and-editor">File menu (Shell and Editor)</a></li>
896<li><a class="reference internal" href="#edit-menu-shell-and-editor">Edit menu (Shell and Editor)</a></li>
897<li><a class="reference internal" href="#format-menu-editor-window-only">Format menu (Editor window only)</a></li>
898<li><a class="reference internal" href="#run-menu-editor-window-only">Run menu (Editor window only)</a></li>
899<li><a class="reference internal" href="#shell-menu-shell-window-only">Shell menu (Shell window only)</a></li>
900<li><a class="reference internal" href="#debug-menu-shell-window-only">Debug menu (Shell window only)</a></li>
901<li><a class="reference internal" href="#options-menu-shell-and-editor">Options menu (Shell and Editor)</a></li>
902<li><a class="reference internal" href="#window-menu-shell-and-editor">Window menu (Shell and Editor)</a></li>
903<li><a class="reference internal" href="#help-menu-shell-and-editor">Help menu (Shell and Editor)</a></li>
904<li><a class="reference internal" href="#context-menus">Context Menus</a></li>
905</ul>
906</li>
907<li><a class="reference internal" href="#editing-and-navigation">Editing and navigation</a><ul>
908<li><a class="reference internal" href="#editor-windows">Editor windows</a></li>
909<li><a class="reference internal" href="#key-bindings">Key bindings</a></li>
910<li><a class="reference internal" href="#automatic-indentation">Automatic indentation</a></li>
911<li><a class="reference internal" href="#completions">Completions</a></li>
912<li><a class="reference internal" href="#calltips">Calltips</a></li>
913<li><a class="reference internal" href="#code-context">Code Context</a></li>
914<li><a class="reference internal" href="#python-shell-window">Python Shell window</a></li>
915<li><a class="reference internal" href="#text-colors">Text colors</a></li>
916</ul>
917</li>
918<li><a class="reference internal" href="#startup-and-code-execution">Startup and code execution</a><ul>
919<li><a class="reference internal" href="#command-line-usage">Command line usage</a></li>
920<li><a class="reference internal" href="#startup-failure">Startup failure</a></li>
921<li><a class="reference internal" href="#running-user-code">Running user code</a></li>
922<li><a class="reference internal" href="#user-output-in-shell">User output in Shell</a></li>
923<li><a class="reference internal" href="#developing-tkinter-applications">Developing tkinter applications</a></li>
924<li><a class="reference internal" href="#running-without-a-subprocess">Running without a subprocess</a></li>
925</ul>
926</li>
927<li><a class="reference internal" href="#help-and-preferences">Help and preferences</a><ul>
928<li><a class="reference internal" href="#help-sources">Help sources</a></li>
929<li><a class="reference internal" href="#setting-preferences">Setting preferences</a></li>
930<li><a class="reference internal" href="#idle-on-macos">IDLE on macOS</a></li>
931<li><a class="reference internal" href="#extensions">Extensions</a></li>
932</ul>
933</li>
934</ul>
935</li>
936</ul>
937
938  <h4>Previous topic</h4>
939  <p class="topless"><a href="tkinter.tix.html"
940                        title="previous chapter"><code class="xref py py-mod docutils literal notranslate"><span class="pre">tkinter.tix</span></code> — Extension widgets for Tk</a></p>
941  <h4>Next topic</h4>
942  <p class="topless"><a href="development.html"
943                        title="next chapter">Development Tools</a></p>
944  <div role="note" aria-label="source link">
945    <h3>This Page</h3>
946    <ul class="this-page-menu">
947      <li><a href="../bugs.html">Report a Bug</a></li>
948      <li>
949        <a href="https://github.com/python/cpython/blob/main/Doc/library/idle.rst"
950            rel="nofollow">Show Source
951        </a>
952      </li>
953    </ul>
954  </div>
955        </div>
956      </div>
957      <div class="clearer"></div>
958    </div>
959    <div class="related" role="navigation" aria-label="related navigation">
960      <h3>Navigation</h3>
961      <ul>
962        <li class="right" style="margin-right: 10px">
963          <a href="../genindex.html" title="General Index"
964             >index</a></li>
965        <li class="right" >
966          <a href="../py-modindex.html" title="Python Module Index"
967             >modules</a> |</li>
968        <li class="right" >
969          <a href="development.html" title="Development Tools"
970             >next</a> |</li>
971        <li class="right" >
972          <a href="tkinter.tix.html" title="tkinter.tix — Extension widgets for Tk"
973             >previous</a> |</li>
974
975    <li><img src="../_static/py.png" alt=""
976             style="vertical-align: middle; margin-top: -1px"/></li>
977    <li><a href="https://www.python.org/">Python</a> &#187;</li>
978
979
980    <li id="cpython-language-and-version">
981      <a href="../index.html">3.11.0a4 Documentation</a> &#187;
982    </li>
983
984          <li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
985          <li class="nav-item nav-item-2"><a href="tk.html" >Graphical User Interfaces with Tk</a> &#187;</li>
986        <li class="nav-item nav-item-this"><a href="">IDLE</a></li>
987    <li class="right">
988
989
990    <div class="inline-search" style="display: none" role="search">
991        <form class="inline-search" action="../search.html" method="get">
992          <input placeholder="Quick search" type="text" name="q" />
993          <input type="submit" value="Go" />
994          <input type="hidden" name="check_keywords" value="yes" />
995          <input type="hidden" name="area" value="default" />
996        </form>
997    </div>
998    <script type="text/javascript">$('.inline-search').show(0);</script>
999         |
1000    </li>
1001
1002      </ul>
1003    </div>
1004    <div class="footer">
1005    &copy; <a href="../copyright.html">Copyright</a> 2001-2022, Python Software Foundation.
1006    <br />
1007
1008    The Python Software Foundation is a non-profit corporation.
1009<a href="https://www.python.org/psf/donations/">Please donate.</a>
1010<br />
1011    <br />
1012
1013    Last updated on Jan 26, 2022.
1014    <a href="/bugs.html">Found a bug</a>?
1015    <br />
1016
1017    Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 3.2.1.
1018    </div>
1019
1020  </body>
1021</html>
1022