Skip to content

Commit 522af29

Browse files
Deploy preview for PR 1133 🛫
1 parent e2c7af9 commit 522af29

File tree

564 files changed

+5976
-5993
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

564 files changed

+5976
-5993
lines changed

pr-preview/pr-1133/_sources/library/cmdlinelibs.rst.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _cmdlinelibs:
22

33
********************************
4-
Command Line Interface Libraries
4+
Command-line interface libraries
55
********************************
66

77
The modules described in this chapter assist with implementing
@@ -19,3 +19,4 @@ Here's an overview:
1919
curses.rst
2020
curses.ascii.rst
2121
curses.panel.rst
22+
cmd.rst

pr-preview/pr-1133/_sources/library/concurrent.futures.rst.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ Executor Objects
9292
executor has started running will be completed prior to this method
9393
returning. The remaining futures are cancelled.
9494

95-
You can avoid having to call this method explicitly if you use the
96-
:keyword:`with` statement, which will shutdown the :class:`Executor`
97-
(waiting as if :meth:`Executor.shutdown` were called with *wait* set to
98-
``True``)::
95+
You can avoid having to call this method explicitly if you use the executor
96+
as a :term:`context manager` via the :keyword:`with` statement, which
97+
will shutdown the :class:`Executor` (waiting as if :meth:`Executor.shutdown`
98+
were called with *wait* set to ``True``)::
9999

100100
import shutil
101101
with ThreadPoolExecutor(max_workers=4) as e:

pr-preview/pr-1133/_sources/library/constants.rst.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,17 @@ should not be used in programs.
9494
exit(code=None)
9595

9696
Objects that when printed, print a message like "Use quit() or Ctrl-D
97-
(i.e. EOF) to exit", and when called, raise :exc:`SystemExit` with the
97+
(i.e. EOF) to exit", and when accessed directly in the interactive
98+
interpreter or called as functions, raise :exc:`SystemExit` with the
9899
specified exit code.
99100

100101
.. data:: help
101102
:noindex:
102103

103104
Object that when printed, prints the message "Type help() for interactive
104-
help, or help(object) for help about object.", and when called,
105-
acts as described :func:`elsewhere <help>`.
105+
help, or help(object) for help about object.", and when accessed directly
106+
in the interactive interpreter, invokes the built-in help system
107+
(see :func:`help`).
106108

107109
.. data:: copyright
108110
credits
Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
1+
:orphan:
2+
13
.. _frameworks:
24

35
******************
4-
Program Frameworks
6+
Program frameworks
57
******************
68

7-
The modules described in this chapter are frameworks that will largely dictate
8-
the structure of your program. Currently the modules described here are all
9-
oriented toward writing command-line interfaces.
10-
11-
The full list of modules described in this chapter is:
12-
13-
14-
.. toctree::
9+
This chapter is no longer maintained, and the modules it contained have been moved to their respective topical documentation.
1510

16-
turtle.rst
17-
cmd.rst
18-
shlex.rst
11+
* :mod:`cmd` — :doc:`Command Line Interface Libraries <./cmdlinelibs>`
12+
* :mod:`shlex` — :doc:`Unix Specific Services <./unix>`
13+
* :mod:`turtle` — :doc:`Graphical User Interfaces with Tk <./tk>`

pr-preview/pr-1133/_sources/library/index.rst.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ the `Python Package Index <https://pypi.org>`_.
6363
internet.rst
6464
mm.rst
6565
i18n.rst
66-
frameworks.rst
6766
tk.rst
6867
development.rst
6968
debug.rst

pr-preview/pr-1133/_sources/library/tk.rst.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _tkinter:
22

33
*********************************
4-
Graphical User Interfaces with Tk
4+
Graphical user interfaces with Tk
55
*********************************
66

77
.. index::
@@ -39,6 +39,7 @@ alternative `GUI frameworks and tools <https://wiki.python.org/moin/GuiProgrammi
3939
tkinter.dnd.rst
4040
tkinter.ttk.rst
4141
idle.rst
42+
turtle.rst
4243

4344
.. Other sections I have in mind are
4445
Tkinter internals

pr-preview/pr-1133/_sources/library/unix.rst.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _unix:
22

33
**********************
4-
Unix Specific Services
4+
Unix-specific services
55
**********************
66

77
The modules described in this chapter provide interfaces to features that are
@@ -11,6 +11,7 @@ of it. Here's an overview:
1111

1212
.. toctree::
1313

14+
shlex.rst
1415
posix.rst
1516
pwd.rst
1617
grp.rst

pr-preview/pr-1133/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ <h3>瀏覽</h3>
320320
<a href="https://www.python.org/psf/donations/">Please donate.</a>
321321
<br>
322322
<br>
323-
最後更新於 8月 15, 2025 (00:22 UTC)。
323+
最後更新於 8月 16, 2025 (00:20 UTC)。
324324

325325
<a href="/bugs.html">Found a bug</a>?
326326

pr-preview/pr-1133/bugs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ <h3>瀏覽</h3>
359359
<a href="https://www.python.org/psf/donations/">Please donate.</a>
360360
<br>
361361
<br>
362-
最後更新於 8月 15, 2025 (00:22 UTC)。
362+
最後更新於 8月 16, 2025 (00:20 UTC)。
363363

364364
<a href="/bugs.html">Found a bug</a>?
365365

pr-preview/pr-1133/c-api/abstract.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ <h3>瀏覽</h3>
329329
<a href="https://www.python.org/psf/donations/">Please donate.</a>
330330
<br>
331331
<br>
332-
最後更新於 8月 15, 2025 (00:22 UTC)。
332+
最後更新於 8月 16, 2025 (00:20 UTC)。
333333

334334
<a href="/bugs.html">Found a bug</a>?
335335

0 commit comments

Comments
 (0)