8000 gh-59150: Add table of runnable modules by slateny · Pull Request #93410 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-59150: Add table of runnable modules #93410

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
8000 Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add more modules, add module link to idlelib
  • Loading branch information
slateny committed Jun 1, 2022
commit 8a4b25d04bec5a3f1ff5f8eddba8c42fa2aeb5a5
6 changes: 4 additions & 2 deletions Doc/library/idle.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.. _idle:

IDLE
====
:mod:`idlelib` --- IDLE
=======================
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IDLE is primarily an application, and secondly a module for use by IDLE extension writers. So I wouldn’t change this heading!


.. module:: idlelib

.. moduleauthor:: Guido van Rossum <guido@python.org>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As long as we're making updates to this, while I originally wrote it, maybe the more useful information is the current maintainer (Terry Reedy).


Expand Down
49 changes: 47 additions & 2 deletions Doc/using/cmdline.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,30 +116,75 @@ source.

.. list-table::

* - :mod:`ast`
- Process Python Abstract Syntax Trees

* - :mod:`asyncio`
- Launch a natively async REPL

* - :mod:`compileall`
- Precompiling Python source modules to bytecode
- Precompile Python source modules to bytecode

* - :mod:`doctest`
- Run :func:`doctest.testmod` on a module

* - :mod:`http.server`
- Create a server that serves files in the current directory

* - :mod:`idlelib`
- Open IDLE

* - :mod:`json.tool`
- Validate and pretty-print JSON objects

* - :mod:`pickle`
- Display the contents of pickles saved as files

* - :mod:`pickletools`
- Analyse the contents of pickles saved as files

* - :mod:`profile`
- Profile Python programs

* - :mod:`site`
- Display details of Python's configuration

* - :mod:`sysconfig`
- Display additional details of Python's configuration

* - :mod:`tarfile`
- Interact with tar archives

* - :mod:`test`
- Execute Python's own regression test suite

* - :mod:`timeit`
- Microbenchmarking for small Python snippets
- Microbenchmark small Python snippets

* - :mod:`tkinter`
- Open a Tk interface to verify proper installation

* - :mod:`tokenize`
- Tokenize Python source code

* - :mod:`trace`
- Trace program execution

* - :mod:`unittest`
- Find and execute unit tests

* - :mod:`webbrowser`
- Open a page in a new browser window or tab

* - :mod:`xmlrpc.client`
- Launch demo XMLRPC client

* - :mod:`xmlrpc.server`
- Launch demo XMLRPC server

* - :mod:`zipapp`
- Manage Python zip files

.. audit-event:: cpython.run_module module-name cmdoption-m

.. seealso::
Expand Down
0