fix comma location in various places (GH-19233)
This commit is contained in:
parent
51e3e450fb
commit
c49016e67c
|
@ -532,7 +532,7 @@ scripts will wind up in :file:`/usr/local/python/bin`. If you want them in
|
||||||
|
|
||||||
python setup.py install --install-scripts=/usr/local/bin
|
python setup.py install --install-scripts=/usr/local/bin
|
||||||
|
|
||||||
(This performs an installation using the "prefix scheme," where the prefix is
|
(This performs an installation using the "prefix scheme", where the prefix is
|
||||||
whatever your Python interpreter was installed with--- :file:`/usr/local/python`
|
whatever your Python interpreter was installed with--- :file:`/usr/local/python`
|
||||||
in this case.)
|
in this case.)
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ belonging to a temporary file) and the :program:`xmpeg` program can be
|
||||||
automatically started to view the file.
|
automatically started to view the file.
|
||||||
|
|
||||||
The mailcap format is documented in :rfc:`1524`, "A User Agent Configuration
|
The mailcap format is documented in :rfc:`1524`, "A User Agent Configuration
|
||||||
Mechanism For Multimedia Mail Format Information," but is not an Internet
|
Mechanism For Multimedia Mail Format Information", but is not an Internet
|
||||||
standard. However, mailcap files are supported on most Unix systems.
|
standard. However, mailcap files are supported on most Unix systems.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@ The :mod:`pprint` module also provides several shortcut functions:
|
||||||
|
|
||||||
.. index:: builtin: eval
|
.. index:: builtin: eval
|
||||||
|
|
||||||
Determine if the formatted representation of *object* is "readable," or can be
|
Determine if the formatted representation of *object* is "readable", or can be
|
||||||
used to reconstruct the value using :func:`eval`. This always returns ``False``
|
used to reconstruct the value using :func:`eval`. This always returns ``False``
|
||||||
for recursive objects.
|
for recursive objects.
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@ This module provides a class, :class:`ssl.SSLSocket`, which is derived from the
|
||||||
:class:`socket.socket` type, and provides a socket-like wrapper that also
|
:class:`socket.socket` type, and provides a socket-like wrapper that also
|
||||||
encrypts and decrypts the data going over the socket with SSL. It supports
|
encrypts and decrypts the data going over the socket with SSL. It supports
|
||||||
additional methods such as :meth:`getpeercert`, which retrieves the
|
additional methods such as :meth:`getpeercert`, which retrieves the
|
||||||
certificate of the other side of the connection, and :meth:`cipher`,which
|
certificate of the other side of the connection, and :meth:`cipher`, which
|
||||||
retrieves the cipher being used for the secure connection.
|
retrieves the cipher being used for the secure connection.
|
||||||
|
|
||||||
For more sophisticated applications, the :class:`ssl.SSLContext` class
|
For more sophisticated applications, the :class:`ssl.SSLContext` class
|
||||||
|
@ -2271,7 +2271,7 @@ Visual inspection shows that the certificate does identify the desired service
|
||||||
(('postalCode', '03894-4801'),),
|
(('postalCode', '03894-4801'),),
|
||||||
(('countryName', 'US'),),
|
(('countryName', 'US'),),
|
||||||
(('stateOrProvinceName', 'NH'),),
|
(('stateOrProvinceName', 'NH'),),
|
||||||
(('localityName', 'Wolfeboro,'),),
|
(('localityName', 'Wolfeboro'),),
|
||||||
(('organizationName', 'Python Software Foundation'),),
|
(('organizationName', 'Python Software Foundation'),),
|
||||||
(('commonName', 'www.python.org'),)),
|
(('commonName', 'www.python.org'),)),
|
||||||
'subjectAltName': (('DNS', 'www.python.org'),
|
'subjectAltName': (('DNS', 'www.python.org'),
|
||||||
|
|
|
@ -239,7 +239,7 @@ hyphenated words; only then will long words be broken if necessary, unless
|
||||||
:attr:`fix_sentence_endings` is false by default.
|
:attr:`fix_sentence_endings` is false by default.
|
||||||
|
|
||||||
Since the sentence detection algorithm relies on ``string.lowercase`` for
|
Since the sentence detection algorithm relies on ``string.lowercase`` for
|
||||||
the definition of "lowercase letter," and a convention of using two spaces
|
the definition of "lowercase letter", and a convention of using two spaces
|
||||||
after a period to separate sentences on the same line, it is specific to
|
after a period to separate sentences on the same line, it is specific to
|
||||||
English-language texts.
|
English-language texts.
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
The :mod:`tokenize` module provides a lexical scanner for Python source code,
|
The :mod:`tokenize` module provides a lexical scanner for Python source code,
|
||||||
implemented in Python. The scanner in this module returns comments as tokens
|
implemented in Python. The scanner in this module returns comments as tokens
|
||||||
as well, making it useful for implementing "pretty-printers," including
|
as well, making it useful for implementing "pretty-printers", including
|
||||||
colorizers for on-screen displays.
|
colorizers for on-screen displays.
|
||||||
|
|
||||||
To simplify token stream handling, all :ref:`operator <operators>` and
|
To simplify token stream handling, all :ref:`operator <operators>` and
|
||||||
|
|
|
@ -17,7 +17,7 @@ Objects, values and types
|
||||||
|
|
||||||
:dfn:`Objects` are Python's abstraction for data. All data in a Python program
|
:dfn:`Objects` are Python's abstraction for data. All data in a Python program
|
||||||
is represented by objects or by relations between objects. (In a sense, and in
|
is represented by objects or by relations between objects. (In a sense, and in
|
||||||
conformance to Von Neumann's model of a "stored program computer," code is also
|
conformance to Von Neumann's model of a "stored program computer", code is also
|
||||||
represented by objects.)
|
represented by objects.)
|
||||||
|
|
||||||
.. index::
|
.. index::
|
||||||
|
|
|
@ -28,7 +28,7 @@ Arithmetic conversions
|
||||||
.. index:: pair: arithmetic; conversion
|
.. index:: pair: arithmetic; conversion
|
||||||
|
|
||||||
When a description of an arithmetic operator below uses the phrase "the numeric
|
When a description of an arithmetic operator below uses the phrase "the numeric
|
||||||
arguments are converted to a common type," this means that the operator
|
arguments are converted to a common type", this means that the operator
|
||||||
implementation for built-in types works as follows:
|
implementation for built-in types works as follows:
|
||||||
|
|
||||||
* If either argument is a complex number, the other is converted to complex;
|
* If either argument is a complex number, the other is converted to complex;
|
||||||
|
|
Loading…
Reference in New Issue