diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst index d6021042c61166..ec4c3e4c49b1dc 100644 --- a/Doc/library/idle.rst +++ b/Doc/library/idle.rst @@ -1,7 +1,9 @@ .. _idle: -IDLE -==== +:mod:`idlelib` --- IDLE +======================= + +.. module:: idlelib .. moduleauthor:: Guido van Rossum diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 07c05a94b99f98..43c94676f795cb 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -112,6 +112,79 @@ source. python -m timeit -s 'setup here' 'benchmarked code here' python -m timeit -h # for details + Other modules include + + .. list-table:: + + * - :mod:`ast` + - Process Python Abstract Syntax Trees + + * - :mod:`asyncio` + - Launch a natively async REPL + + * - :mod:`compileall` + - 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` + - 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::