Skip to content

Commit 0bcd151

Browse files
authored
[3.9] backport non-content changes to IDLE's help.html (GH-26239)
Followup to GH-25851 to synchonize with 3.10. Signed-off-by: Tal Einat <532281+taleinat@users.noreply.github.com>
1 parent 74eb94a commit 0bcd151

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

Lib/idlelib/help.html

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<head>
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>IDLE &#8212; Python 3.10.0a6 documentation</title>
8+
<title>IDLE &#8212; Python 3.11.0a0 documentation</title>
99
<link rel="stylesheet" href="../_static/pydoctheme.css" type="text/css" />
1010
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
1111

@@ -18,7 +18,7 @@
1818
<script src="../_static/sidebar.js"></script>
1919

2020
<link rel="search" type="application/opensearchdescription+xml"
21-
title="Search within Python 3.10.0a6 documentation"
21+
title="Search within Python 3.11.0a0 documentation"
2222
href="../_static/opensearch.xml"/>
2323
<link rel="author" title="About these documents" href="../about.html" />
2424
<link rel="index" title="Index" href="../genindex.html" />
@@ -71,7 +71,7 @@ <h3>Navigation</h3>
7171

7272

7373
<li id="cpython-language-and-version">
74-
<a href="../index.html">3.10.0a6 Documentation</a> &#187;
74+
<a href="../index.html">3.11.0a0 Documentation</a> &#187;
7575
</li>
7676

7777
<li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
@@ -102,7 +102,7 @@ <h3>Navigation</h3>
102102

103103
<div class="section" id="idle">
104104
<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/master/Lib/idlelib/">Lib/idlelib/</a></p>
105+
<p><strong>Source code:</strong> <a class="reference external" href="https://github.com/python/cpython/tree/main/Lib/idlelib/">Lib/idlelib/</a></p>
106106
<hr class="docutils" id="index-0" />
107107
<p>IDLE is Python’s Integrated Development and Learning Environment.</p>
108108
<p>IDLE has the following features:</p>
@@ -685,7 +685,7 @@ <h3>Running user code<a class="headerlink" href="#running-user-code" title="Perm
685685
directly with Python in a text-mode system console or terminal window.
686686
However, the different interface and operation occasionally affect
687687
visible results. For instance, <code class="docutils literal notranslate"><span class="pre">sys.modules</span></code> starts with more entries,
688-
and <code class="docutils literal notranslate"><span class="pre">threading.activeCount()</span></code> returns 2 instead of 1.</p>
688+
and <code class="docutils literal notranslate"><span class="pre">threading.active_count()</span></code> returns 2 instead of 1.</p>
689689
<p>By default, IDLE runs user code in a separate OS process rather than in
690690
the user interface process that runs the shell and editor. In the execution
691691
process, 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>
@@ -939,7 +939,7 @@ <h3>This Page</h3>
939939
<ul class="this-page-menu">
940940
<li><a href="../bugs.html">Report a Bug</a></li>
941941
<li>
942-
<a href="https://github.com/python/cpython/blob/master/Doc/library/idle.rst"
942+
<a href="https://github.com/python/cpython/blob/main/Doc/library/idle.rst"
943943
rel="nofollow">Show Source
944944
</a>
945945
</li>
@@ -971,7 +971,7 @@ <h3>Navigation</h3>
971971

972972

973973
<li id="cpython-language-and-version">
974-
<a href="../index.html">3.10.0a6 Documentation</a> &#187;
974+
<a href="../index.html">3.11.0a0 Documentation</a> &#187;
975975
</li>
976976

977977
<li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
@@ -997,13 +997,19 @@ <h3>Navigation</h3>
997997
<div class="footer">
998998
&copy; <a href="../copyright.html">Copyright</a> 2001-2021, Python Software Foundation.
999999
<br />
1000+
This page is licensed under the Python Software Foundation License Version 2.
1001+
<br />
1002+
Examples, recipes, and other code in the documentation are additionally licensed under the Zero Clause BSD License.
1003+
<br />
1004+
See <a href="">History and License</a> for more information.
1005+
<br /><br />
10001006

10011007
The Python Software Foundation is a non-profit corporation.
10021008
<a href="https://www.python.org/psf/donations/">Please donate.</a>
10031009
<br />
10041010
<br />
10051011

1006-
Last updated on Mar 29, 2021.
1012+
Last updated on May 11, 2021.
10071013
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?
10081014
<br />
10091015

0 commit comments

Comments
 (0)