@@ -417,12 +417,33 @@ not be found. Run the module once with your imports to correct this situation.
Note that IDLE itself places quite a few modules in sys.modules, so
much can be found by default, e.g. the re module.</p>
<p>If you don’t like the ACW popping up unbidden, simply make the delay
longer or disable the extension. Or another option is the delay could
be set to zero. Another alternative to preventing ACW popups is to
disable the call tips extension.</p>
longer or disable the extension.</p>
</div>
<divclass="section"id="calltips">
<h3>25.5.2.3. Calltips<aclass="headerlink"href="#calltips"title="Permalink to this headline">¶</a></h3>
<p>A calltip is shown when one types <ttclass="kbd docutils literal"><spanclass="pre">(</span></tt> after the name of an <em>acccessible</em>
function. A name expression may include dots and subscripts. A calltip
remains until it is clicked, the cursor is moved out of the argument area,
or <ttclass="kbd docutils literal"><spanclass="pre">)</span></tt> is typed. When the cursor is in the argument part of a definition,
the menu or shortcut display a calltip.</p>
<p>A calltip consists of the function signature and the first line of the
docstring. For builtins without an accessible signature, the calltip
consists of all lines up the fifth line or the first blank line. These
details may change.</p>
<p>The set of <em>accessible</em> functions depends on what modules have been imported
into the user process, including those imported by Idle itself,
and what definitions have been run, all since the last restart.</p>
<p>For example, restart the Shell and enter <ttclass="docutils literal"><spanclass="pre">itertools.count(</span></tt>. A calltip
appears because Idle imports itertools into the user process for its own use.
(This could change.) Enter <ttclass="docutils literal"><spanclass="pre">turtle.write(</span></tt> and nothing appears. Idle does
not import turtle. The menu or shortcut do nothing either. Enter
<ttclass="docutils literal"><spanclass="pre">import</span><spanclass="pre">turtle</span></tt> and then <ttclass="docutils literal"><spanclass="pre">turtle.write(</span></tt> will work.</p>
<p>In an editor, import statements have no effect until one runs the file. One
might want to run a file after writing the import statements at the top,
or immediately run an existing file before editing.</p>
</div>
<divclass="section"id="python-shell-window">
<h3>25.5.2.3. Python Shell window<aclass="headerlink"href="#python-shell-window"title="Permalink to this headline">¶</a></h3>
<h3>25.5.2.4. Python Shell window<aclass="headerlink"href="#python-shell-window"title="Permalink to this headline">¶</a></h3>