mirror of https://github.com/python/cpython
docs: module page titles should not start with a link to themselves (#117099)
This commit is contained in:
parent
7b0c247f1c
commit
bcb435ee8f
|
@ -1,5 +1,5 @@
|
|||
:mod:`__future__` --- Future statement definitions
|
||||
==================================================
|
||||
:mod:`!__future__` --- Future statement definitions
|
||||
===================================================
|
||||
|
||||
.. module:: __future__
|
||||
:synopsis: Future statement definitions
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`__main__` --- Top-level code environment
|
||||
==============================================
|
||||
:mod:`!__main__` --- Top-level code environment
|
||||
===============================================
|
||||
|
||||
.. module:: __main__
|
||||
:synopsis: The environment where top-level code is run. Covers command-line
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`_thread` --- Low-level threading API
|
||||
==========================================
|
||||
:mod:`!_thread` --- Low-level threading API
|
||||
===========================================
|
||||
|
||||
.. module:: _thread
|
||||
:synopsis: Low-level threading API.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`abc` --- Abstract Base Classes
|
||||
====================================
|
||||
:mod:`!abc` --- Abstract Base Classes
|
||||
=====================================
|
||||
|
||||
.. module:: abc
|
||||
:synopsis: Abstract base classes according to :pep:`3119`.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`argparse` --- Parser for command-line options, arguments and sub-commands
|
||||
===============================================================================
|
||||
:mod:`!argparse` --- Parser for command-line options, arguments and sub-commands
|
||||
================================================================================
|
||||
|
||||
.. module:: argparse
|
||||
:synopsis: Command-line option and argument parsing library.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`array` --- Efficient arrays of numeric values
|
||||
===================================================
|
||||
:mod:`!array` --- Efficient arrays of numeric values
|
||||
====================================================
|
||||
|
||||
.. module:: array
|
||||
:synopsis: Space efficient arrays of uniformly typed numeric values.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`ast` --- Abstract Syntax Trees
|
||||
====================================
|
||||
:mod:`!ast` --- Abstract Syntax Trees
|
||||
=====================================
|
||||
|
||||
.. module:: ast
|
||||
:synopsis: Abstract Syntax Tree classes and manipulation.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`asyncio` --- Asynchronous I/O
|
||||
===================================
|
||||
:mod:`!asyncio` --- Asynchronous I/O
|
||||
====================================
|
||||
|
||||
.. module:: asyncio
|
||||
:synopsis: Asynchronous I/O.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`atexit` --- Exit handlers
|
||||
===============================
|
||||
:mod:`!atexit` --- Exit handlers
|
||||
================================
|
||||
|
||||
.. module:: atexit
|
||||
:synopsis: Register and execute cleanup functions.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`base64` --- Base16, Base32, Base64, Base85 Data Encodings
|
||||
===============================================================
|
||||
:mod:`!base64` --- Base16, Base32, Base64, Base85 Data Encodings
|
||||
================================================================
|
||||
|
||||
.. module:: base64
|
||||
:synopsis: RFC 4648: Base16, Base32, Base64 Data Encodings;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`bdb` --- Debugger framework
|
||||
=================================
|
||||
:mod:`!bdb` --- Debugger framework
|
||||
==================================
|
||||
|
||||
.. module:: bdb
|
||||
:synopsis: Debugger framework.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`binascii` --- Convert between binary and ASCII
|
||||
====================================================
|
||||
:mod:`!binascii` --- Convert between binary and ASCII
|
||||
=====================================================
|
||||
|
||||
.. module:: binascii
|
||||
:synopsis: Tools for converting between binary and various ASCII-encoded binary
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`bisect` --- Array bisection algorithm
|
||||
===========================================
|
||||
:mod:`!bisect` --- Array bisection algorithm
|
||||
============================================
|
||||
|
||||
.. module:: bisect
|
||||
:synopsis: Array bisection algorithms for binary searching.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`builtins` --- Built-in objects
|
||||
====================================
|
||||
:mod:`!builtins` --- Built-in objects
|
||||
=====================================
|
||||
|
||||
.. module:: builtins
|
||||
:synopsis: The module that provides the built-in namespace.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`bz2` --- Support for :program:`bzip2` compression
|
||||
=======================================================
|
||||
:mod:`!bz2` --- Support for :program:`bzip2` compression
|
||||
========================================================
|
||||
|
||||
.. module:: bz2
|
||||
:synopsis: Interfaces for bzip2 compression and decompression.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`calendar` --- General calendar-related functions
|
||||
======================================================
|
||||
:mod:`!calendar` --- General calendar-related functions
|
||||
=======================================================
|
||||
|
||||
.. module:: calendar
|
||||
:synopsis: Functions for working with calendars, including some emulation
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`cmath` --- Mathematical functions for complex numbers
|
||||
===========================================================
|
||||
:mod:`!cmath` --- Mathematical functions for complex numbers
|
||||
============================================================
|
||||
|
||||
.. module:: cmath
|
||||
:synopsis: Mathematical functions for complex numbers.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`cmd` --- Support for line-oriented command interpreters
|
||||
=============================================================
|
||||
:mod:`!cmd` --- Support for line-oriented command interpreters
|
||||
==============================================================
|
||||
|
||||
.. module:: cmd
|
||||
:synopsis: Build line-oriented command interpreters.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`code` --- Interpreter base classes
|
||||
========================================
|
||||
:mod:`!code` --- Interpreter base classes
|
||||
=========================================
|
||||
|
||||
.. module:: code
|
||||
:synopsis: Facilities to implement read-eval-print loops.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`codecs` --- Codec registry and base classes
|
||||
=================================================
|
||||
:mod:`!codecs` --- Codec registry and base classes
|
||||
==================================================
|
||||
|
||||
.. module:: codecs
|
||||
:synopsis: Encode and decode data and streams.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`codeop` --- Compile Python code
|
||||
=====================================
|
||||
:mod:`!codeop` --- Compile Python code
|
||||
======================================
|
||||
|
||||
.. module:: codeop
|
||||
:synopsis: Compile (possibly incomplete) Python code.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`collections.abc` --- Abstract Base Classes for Containers
|
||||
===============================================================
|
||||
:mod:`!collections.abc` --- Abstract Base Classes for Containers
|
||||
================================================================
|
||||
|
||||
.. module:: collections.abc
|
||||
:synopsis: Abstract base classes for containers
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`collections` --- Container datatypes
|
||||
==========================================
|
||||
:mod:`!collections` --- Container datatypes
|
||||
===========================================
|
||||
|
||||
.. module:: collections
|
||||
:synopsis: Container datatypes
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`colorsys` --- Conversions between color systems
|
||||
=====================================================
|
||||
:mod:`!colorsys` --- Conversions between color systems
|
||||
======================================================
|
||||
|
||||
.. module:: colorsys
|
||||
:synopsis: Conversion functions between RGB and other color systems.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`compileall` --- Byte-compile Python libraries
|
||||
===================================================
|
||||
:mod:`!compileall` --- Byte-compile Python libraries
|
||||
====================================================
|
||||
|
||||
.. module:: compileall
|
||||
:synopsis: Tools for byte-compiling all Python source files in a directory tree.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`concurrent.futures` --- Launching parallel tasks
|
||||
======================================================
|
||||
:mod:`!concurrent.futures` --- Launching parallel tasks
|
||||
=======================================================
|
||||
|
||||
.. module:: concurrent.futures
|
||||
:synopsis: Execute computations concurrently using threads or processes.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`configparser` --- Configuration file parser
|
||||
=================================================
|
||||
:mod:`!configparser` --- Configuration file parser
|
||||
==================================================
|
||||
|
||||
.. module:: configparser
|
||||
:synopsis: Configuration file parser.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`contextvars` --- Context Variables
|
||||
========================================
|
||||
:mod:`!contextvars` --- Context Variables
|
||||
=========================================
|
||||
|
||||
.. module:: contextvars
|
||||
:synopsis: Context Variables
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`copy` --- Shallow and deep copy operations
|
||||
================================================
|
||||
:mod:`!copy` --- Shallow and deep copy operations
|
||||
=================================================
|
||||
|
||||
.. module:: copy
|
||||
:synopsis: Shallow and deep copy operations.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`copyreg` --- Register :mod:`pickle` support functions
|
||||
===========================================================
|
||||
:mod:`!copyreg` --- Register :mod:`!pickle` support functions
|
||||
=============================================================
|
||||
|
||||
.. module:: copyreg
|
||||
:synopsis: Register pickle support functions.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`csv` --- CSV File Reading and Writing
|
||||
===========================================
|
||||
:mod:`!csv` --- CSV File Reading and Writing
|
||||
============================================
|
||||
|
||||
.. module:: csv
|
||||
:synopsis: Write and read tabular data to and from delimited files.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`ctypes` --- A foreign function library for Python
|
||||
=======================================================
|
||||
:mod:`!ctypes` --- A foreign function library for Python
|
||||
========================================================
|
||||
|
||||
.. module:: ctypes
|
||||
:synopsis: A foreign function library for Python.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`curses.ascii` --- Utilities for ASCII characters
|
||||
======================================================
|
||||
:mod:`!curses.ascii` --- Utilities for ASCII characters
|
||||
=======================================================
|
||||
|
||||
.. module:: curses.ascii
|
||||
:synopsis: Constants and set-membership functions for ASCII characters.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`curses.panel` --- A panel stack extension for curses
|
||||
==========================================================
|
||||
:mod:`!curses.panel` --- A panel stack extension for curses
|
||||
===========================================================
|
||||
|
||||
.. module:: curses.panel
|
||||
:synopsis: A panel stack extension that adds depth to curses windows.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`curses` --- Terminal handling for character-cell displays
|
||||
===============================================================
|
||||
:mod:`!curses` --- Terminal handling for character-cell displays
|
||||
================================================================
|
||||
|
||||
.. module:: curses
|
||||
:synopsis: An interface to the curses library, providing portable
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`datetime` --- Basic date and time types
|
||||
=============================================
|
||||
:mod:`!datetime` --- Basic date and time types
|
||||
==============================================
|
||||
|
||||
.. module:: datetime
|
||||
:synopsis: Basic date and time types.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`dbm` --- Interfaces to Unix "databases"
|
||||
=============================================
|
||||
:mod:`!dbm` --- Interfaces to Unix "databases"
|
||||
==============================================
|
||||
|
||||
.. module:: dbm
|
||||
:synopsis: Interfaces to various Unix "database" formats.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`decimal` --- Decimal fixed point and floating point arithmetic
|
||||
====================================================================
|
||||
:mod:`!decimal` --- Decimal fixed point and floating point arithmetic
|
||||
=====================================================================
|
||||
|
||||
.. module:: decimal
|
||||
:synopsis: Implementation of the General Decimal Arithmetic Specification.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`difflib` --- Helpers for computing deltas
|
||||
===============================================
|
||||
:mod:`!difflib` --- Helpers for computing deltas
|
||||
================================================
|
||||
|
||||
.. module:: difflib
|
||||
:synopsis: Helpers for computing differences between objects.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`dis` --- Disassembler for Python bytecode
|
||||
===============================================
|
||||
:mod:`!dis` --- Disassembler for Python bytecode
|
||||
================================================
|
||||
|
||||
.. module:: dis
|
||||
:synopsis: Disassembler for Python bytecode.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`doctest` --- Test interactive Python examples
|
||||
===================================================
|
||||
:mod:`!doctest` --- Test interactive Python examples
|
||||
====================================================
|
||||
|
||||
.. module:: doctest
|
||||
:synopsis: Test pieces of code within docstrings.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.charset`: Representing character sets
|
||||
-------------------------------------------------
|
||||
:mod:`!email.charset`: Representing character sets
|
||||
--------------------------------------------------
|
||||
|
||||
.. module:: email.charset
|
||||
:synopsis: Character Sets
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.contentmanager`: Managing MIME Content
|
||||
--------------------------------------------------
|
||||
:mod:`!email.contentmanager`: Managing MIME Content
|
||||
---------------------------------------------------
|
||||
|
||||
.. module:: email.contentmanager
|
||||
:synopsis: Storing and Retrieving Content from MIME Parts
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.encoders`: Encoders
|
||||
-------------------------------
|
||||
:mod:`!email.encoders`: Encoders
|
||||
--------------------------------
|
||||
|
||||
.. module:: email.encoders
|
||||
:synopsis: Encoders for email message payloads.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.errors`: Exception and Defect classes
|
||||
-------------------------------------------------
|
||||
:mod:`!email.errors`: Exception and Defect classes
|
||||
--------------------------------------------------
|
||||
|
||||
.. module:: email.errors
|
||||
:synopsis: The exception classes used by the email package.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.generator`: Generating MIME documents
|
||||
-------------------------------------------------
|
||||
:mod:`!email.generator`: Generating MIME documents
|
||||
--------------------------------------------------
|
||||
|
||||
.. module:: email.generator
|
||||
:synopsis: Generate flat text email messages from a message structure.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.header`: Internationalized headers
|
||||
----------------------------------------------
|
||||
:mod:`!email.header`: Internationalized headers
|
||||
-----------------------------------------------
|
||||
|
||||
.. module:: email.header
|
||||
:synopsis: Representing non-ASCII headers
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.headerregistry`: Custom Header Objects
|
||||
--------------------------------------------------
|
||||
:mod:`!email.headerregistry`: Custom Header Objects
|
||||
---------------------------------------------------
|
||||
|
||||
.. module:: email.headerregistry
|
||||
:synopsis: Automatic Parsing of headers based on the field name
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.iterators`: Iterators
|
||||
---------------------------------
|
||||
:mod:`!email.iterators`: Iterators
|
||||
----------------------------------
|
||||
|
||||
.. module:: email.iterators
|
||||
:synopsis: Iterate over a message object tree.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.message`: Representing an email message
|
||||
---------------------------------------------------
|
||||
:mod:`!email.message`: Representing an email message
|
||||
----------------------------------------------------
|
||||
|
||||
.. module:: email.message
|
||||
:synopsis: The base class representing email messages.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.mime`: Creating email and MIME objects from scratch
|
||||
---------------------------------------------------------------
|
||||
:mod:`!email.mime`: Creating email and MIME objects from scratch
|
||||
----------------------------------------------------------------
|
||||
|
||||
.. module:: email.mime
|
||||
:synopsis: Build MIME messages.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.parser`: Parsing email messages
|
||||
-------------------------------------------
|
||||
:mod:`!email.parser`: Parsing email messages
|
||||
--------------------------------------------
|
||||
|
||||
.. module:: email.parser
|
||||
:synopsis: Parse flat text email messages to produce a message object structure.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.policy`: Policy Objects
|
||||
-----------------------------------
|
||||
:mod:`!email.policy`: Policy Objects
|
||||
------------------------------------
|
||||
|
||||
.. module:: email.policy
|
||||
:synopsis: Controlling the parsing and generating of messages
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email` --- An email and MIME handling package
|
||||
===================================================
|
||||
:mod:`!email` --- An email and MIME handling package
|
||||
====================================================
|
||||
|
||||
.. module:: email
|
||||
:synopsis: Package supporting the parsing, manipulating, and generating
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`email.utils`: Miscellaneous utilities
|
||||
-------------------------------------------
|
||||
:mod:`!email.utils`: Miscellaneous utilities
|
||||
--------------------------------------------
|
||||
|
||||
.. module:: email.utils
|
||||
:synopsis: Miscellaneous email package utilities.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`ensurepip` --- Bootstrapping the ``pip`` installer
|
||||
========================================================
|
||||
:mod:`!ensurepip` --- Bootstrapping the ``pip`` installer
|
||||
=========================================================
|
||||
|
||||
.. module:: ensurepip
|
||||
:synopsis: Bootstrapping the "pip" installer into an existing Python
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`enum` --- Support for enumerations
|
||||
========================================
|
||||
:mod:`!enum` --- Support for enumerations
|
||||
=========================================
|
||||
|
||||
.. module:: enum
|
||||
:synopsis: Implementation of an enumeration class.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`errno` --- Standard errno system symbols
|
||||
==============================================
|
||||
:mod:`!errno` --- Standard errno system symbols
|
||||
===============================================
|
||||
|
||||
.. module:: errno
|
||||
:synopsis: Standard errno system symbols.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`faulthandler` --- Dump the Python traceback
|
||||
=================================================
|
||||
:mod:`!faulthandler` --- Dump the Python traceback
|
||||
==================================================
|
||||
|
||||
.. module:: faulthandler
|
||||
:synopsis: Dump the Python traceback.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`fcntl` --- The ``fcntl`` and ``ioctl`` system calls
|
||||
=========================================================
|
||||
:mod:`!fcntl` --- The ``fcntl`` and ``ioctl`` system calls
|
||||
==========================================================
|
||||
|
||||
.. module:: fcntl
|
||||
:platform: Unix
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`filecmp` --- File and Directory Comparisons
|
||||
=================================================
|
||||
:mod:`!filecmp` --- File and Directory Comparisons
|
||||
==================================================
|
||||
|
||||
.. module:: filecmp
|
||||
:synopsis: Compare files efficiently.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`fileinput` --- Iterate over lines from multiple input streams
|
||||
===================================================================
|
||||
:mod:`!fileinput` --- Iterate over lines from multiple input streams
|
||||
====================================================================
|
||||
|
||||
.. module:: fileinput
|
||||
:synopsis: Loop over standard input or a list of files.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`fnmatch` --- Unix filename pattern matching
|
||||
=================================================
|
||||
:mod:`!fnmatch` --- Unix filename pattern matching
|
||||
==================================================
|
||||
|
||||
.. module:: fnmatch
|
||||
:synopsis: Unix shell style filename pattern matching.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`fractions` --- Rational numbers
|
||||
=====================================
|
||||
:mod:`!fractions` --- Rational numbers
|
||||
======================================
|
||||
|
||||
.. module:: fractions
|
||||
:synopsis: Rational numbers.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`ftplib` --- FTP protocol client
|
||||
=====================================
|
||||
:mod:`!ftplib` --- FTP protocol client
|
||||
======================================
|
||||
|
||||
.. module:: ftplib
|
||||
:synopsis: FTP protocol client (requires sockets).
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`functools` --- Higher-order functions and operations on callable objects
|
||||
==============================================================================
|
||||
:mod:`!functools` --- Higher-order functions and operations on callable objects
|
||||
===============================================================================
|
||||
|
||||
.. module:: functools
|
||||
:synopsis: Higher-order functions and operations on callable objects.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`gc` --- Garbage Collector interface
|
||||
=========================================
|
||||
:mod:`!gc` --- Garbage Collector interface
|
||||
==========================================
|
||||
|
||||
.. module:: gc
|
||||
:synopsis: Interface to the cycle-detecting garbage collector.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`getopt` --- C-style parser for command line options
|
||||
=========================================================
|
||||
:mod:`!getopt` --- C-style parser for command line options
|
||||
==========================================================
|
||||
|
||||
.. module:: getopt
|
||||
:synopsis: Portable parser for command line options; support both short and
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`getpass` --- Portable password input
|
||||
==========================================
|
||||
:mod:`!getpass` --- Portable password input
|
||||
===========================================
|
||||
|
||||
.. module:: getpass
|
||||
:synopsis: Portable reading of passwords and retrieval of the userid.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`gettext` --- Multilingual internationalization services
|
||||
=============================================================
|
||||
:mod:`!gettext` --- Multilingual internationalization services
|
||||
==============================================================
|
||||
|
||||
.. module:: gettext
|
||||
:synopsis: Multilingual internationalization services.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`glob` --- Unix style pathname pattern expansion
|
||||
=====================================================
|
||||
:mod:`!glob` --- Unix style pathname pattern expansion
|
||||
======================================================
|
||||
|
||||
.. module:: glob
|
||||
:synopsis: Unix shell style pathname pattern expansion.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`graphlib` --- Functionality to operate with graph-like structures
|
||||
=========================================================================
|
||||
:mod:`!graphlib` --- Functionality to operate with graph-like structures
|
||||
========================================================================
|
||||
|
||||
.. module:: graphlib
|
||||
:synopsis: Functionality to operate with graph-like structures
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`grp` --- The group database
|
||||
=================================
|
||||
:mod:`!grp` --- The group database
|
||||
==================================
|
||||
|
||||
.. module:: grp
|
||||
:platform: Unix
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`gzip` --- Support for :program:`gzip` files
|
||||
=================================================
|
||||
:mod:`!gzip` --- Support for :program:`gzip` files
|
||||
==================================================
|
||||
|
||||
.. module:: gzip
|
||||
:synopsis: Interfaces for gzip compression and decompression using file objects.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`hashlib` --- Secure hashes and message digests
|
||||
====================================================
|
||||
:mod:`!hashlib` --- Secure hashes and message digests
|
||||
=====================================================
|
||||
|
||||
.. module:: hashlib
|
||||
:synopsis: Secure hash and message digest algorithms.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`heapq` --- Heap queue algorithm
|
||||
=====================================
|
||||
:mod:`!heapq` --- Heap queue algorithm
|
||||
======================================
|
||||
|
||||
.. module:: heapq
|
||||
:synopsis: Heap queue algorithm (a.k.a. priority queue).
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`hmac` --- Keyed-Hashing for Message Authentication
|
||||
========================================================
|
||||
:mod:`!hmac` --- Keyed-Hashing for Message Authentication
|
||||
=========================================================
|
||||
|
||||
.. module:: hmac
|
||||
:synopsis: Keyed-Hashing for Message Authentication (HMAC) implementation
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`html.entities` --- Definitions of HTML general entities
|
||||
=============================================================
|
||||
:mod:`!html.entities` --- Definitions of HTML general entities
|
||||
==============================================================
|
||||
|
||||
.. module:: html.entities
|
||||
:synopsis: Definitions of HTML general entities.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`html.parser` --- Simple HTML and XHTML parser
|
||||
===================================================
|
||||
:mod:`!html.parser` --- Simple HTML and XHTML parser
|
||||
====================================================
|
||||
|
||||
.. module:: html.parser
|
||||
:synopsis: A simple parser that can handle HTML and XHTML.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`html` --- HyperText Markup Language support
|
||||
=================================================
|
||||
:mod:`!html` --- HyperText Markup Language support
|
||||
==================================================
|
||||
|
||||
.. module:: html
|
||||
:synopsis: Helpers for manipulating HTML.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`http.client` --- HTTP protocol client
|
||||
===========================================
|
||||
:mod:`!http.client` --- HTTP protocol client
|
||||
============================================
|
||||
|
||||
.. module:: http.client
|
||||
:synopsis: HTTP and HTTPS protocol client (requires sockets).
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`http.cookiejar` --- Cookie handling for HTTP clients
|
||||
==========================================================
|
||||
:mod:`!http.cookiejar` --- Cookie handling for HTTP clients
|
||||
===========================================================
|
||||
|
||||
.. module:: http.cookiejar
|
||||
:synopsis: Classes for automatic handling of HTTP cookies.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`http.cookies` --- HTTP state management
|
||||
=============================================
|
||||
:mod:`!http.cookies` --- HTTP state management
|
||||
==============================================
|
||||
|
||||
.. module:: http.cookies
|
||||
:synopsis: Support for HTTP state management (cookies).
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`http` --- HTTP modules
|
||||
============================
|
||||
:mod:`!http` --- HTTP modules
|
||||
=============================
|
||||
|
||||
.. module:: http
|
||||
:synopsis: HTTP status codes and messages
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`http.server` --- HTTP servers
|
||||
===================================
|
||||
:mod:`!http.server` --- HTTP servers
|
||||
====================================
|
||||
|
||||
.. module:: http.server
|
||||
:synopsis: HTTP server and request handlers.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`imaplib` --- IMAP4 protocol client
|
||||
========================================
|
||||
:mod:`!imaplib` --- IMAP4 protocol client
|
||||
=========================================
|
||||
|
||||
.. module:: imaplib
|
||||
:synopsis: IMAP4 protocol client (requires sockets).
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`importlib.resources.abc` -- Abstract base classes for resources
|
||||
---------------------------------------------------------------------
|
||||
:mod:`!importlib.resources.abc` -- Abstract base classes for resources
|
||||
----------------------------------------------------------------------
|
||||
|
||||
.. module:: importlib.resources.abc
|
||||
:synopsis: Abstract base classes for resources
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`importlib.resources` -- Package resource reading, opening and access
|
||||
--------------------------------------------------------------------------
|
||||
:mod:`!importlib.resources` -- Package resource reading, opening and access
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
.. module:: importlib.resources
|
||||
:synopsis: Package resource reading, opening, and access
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`inspect` --- Inspect live objects
|
||||
=======================================
|
||||
:mod:`!inspect` --- Inspect live objects
|
||||
========================================
|
||||
|
||||
.. testsetup:: *
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`io` --- Core tools for working with streams
|
||||
=================================================
|
||||
:mod:`!io` --- Core tools for working with streams
|
||||
==================================================
|
||||
|
||||
.. module:: io
|
||||
:synopsis: Core tools for working with streams.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`ipaddress` --- IPv4/IPv6 manipulation library
|
||||
===================================================
|
||||
:mod:`!ipaddress` --- IPv4/IPv6 manipulation library
|
||||
====================================================
|
||||
|
||||
.. module:: ipaddress
|
||||
:synopsis: IPv4/IPv6 manipulation library.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`itertools` --- Functions creating iterators for efficient looping
|
||||
=======================================================================
|
||||
:mod:`!itertools` --- Functions creating iterators for efficient looping
|
||||
========================================================================
|
||||
|
||||
.. module:: itertools
|
||||
:synopsis: Functions creating iterators for efficient looping.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`json` --- JSON encoder and decoder
|
||||
========================================
|
||||
:mod:`!json` --- JSON encoder and decoder
|
||||
=========================================
|
||||
|
||||
.. module:: json
|
||||
:synopsis: Encode and decode the JSON format.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`keyword` --- Testing for Python keywords
|
||||
==============================================
|
||||
:mod:`!keyword` --- Testing for Python keywords
|
||||
===============================================
|
||||
|
||||
.. module:: keyword
|
||||
:synopsis: Test whether a string is a keyword in Python.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`linecache` --- Random access to text lines
|
||||
================================================
|
||||
:mod:`!linecache` --- Random access to text lines
|
||||
=================================================
|
||||
|
||||
.. module:: linecache
|
||||
:synopsis: Provides random access to individual lines from text files.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`locale` --- Internationalization services
|
||||
===============================================
|
||||
:mod:`!locale` --- Internationalization services
|
||||
================================================
|
||||
|
||||
.. module:: locale
|
||||
:synopsis: Internationalization services.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`logging.config` --- Logging configuration
|
||||
===============================================
|
||||
:mod:`!logging.config` --- Logging configuration
|
||||
================================================
|
||||
|
||||
.. module:: logging.config
|
||||
:synopsis: Configuration of the logging module.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`logging.handlers` --- Logging handlers
|
||||
============================================
|
||||
:mod:`!logging.handlers` --- Logging handlers
|
||||
=============================================
|
||||
|
||||
.. module:: logging.handlers
|
||||
:synopsis: Handlers for the logging module.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`logging` --- Logging facility for Python
|
||||
==============================================
|
||||
:mod:`!logging` --- Logging facility for Python
|
||||
===============================================
|
||||
|
||||
.. module:: logging
|
||||
:synopsis: Flexible event logging system for applications.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
:mod:`lzma` --- Compression using the LZMA algorithm
|
||||
====================================================
|
||||
:mod:`!lzma` --- Compression using the LZMA algorithm
|
||||
=====================================================
|
||||
|
||||
.. module:: lzma
|
||||
:synopsis: A Python wrapper for the liblzma compression library.
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue