diff options
author | Andrés Delfino <adelfino@gmail.com> | 2018-09-14 17:13:09 (GMT) |
---|---|---|
committer | Petr Viktorin <encukou@gmail.com> | 2018-09-14 17:13:09 (GMT) |
commit | 271818fe279df5ab292789f97c3a52c477bd8f13 (patch) | |
tree | d53219504a31b64f3f90917577cada08b7bff1cf /Doc/library/test.rst | |
parent | c9d66f0ed4f07b9d184d22abbfdd4c3c8e2702df (diff) | |
download | cpython-271818fe279df5ab292789f97c3a52c477bd8f13.zip cpython-271818fe279df5ab292789f97c3a52c477bd8f13.tar.gz cpython-271818fe279df5ab292789f97c3a52c477bd8f13.tar.bz2 |
Fix "Python" casing in a few places (GH-9001)
Diffstat (limited to 'Doc/library/test.rst')
-rw-r--r-- | Doc/library/test.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index aeeed00..95d7f54 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -1076,7 +1076,7 @@ The :mod:`test.support` module defines the following functions: Either this method or :func:`bind_port` should be used for any tests where a server socket needs to be bound to a particular port for the duration of the test. - Which one to use depends on whether the calling code is creating a python + Which one to use depends on whether the calling code is creating a Python socket, or if an unused port needs to be provided in a constructor or passed to an external program (i.e. the ``-accept`` argument to openssl's s_server mode). Always prefer :func:`bind_port` over |