[Python-checkins] bpo-35525: Correct the argument name for NNTP.starttls() (GH-11310)

Tal Einat webhook-mailer at python.org
Wed Jan 2 16:05:28 EST 2019


https://github.com/python/cpython/commit/e9a044ec16989bd4b39763c0588c17200a925350
commit: e9a044ec16989bd4b39763c0588c17200a925350
branch: master
author: Harmandeep Singh <harmandeep3091 at gmail.com>
committer: Tal Einat <taleinat+github at gmail.com>
date: 2019-01-02T23:05:19+02:00
summary:

bpo-35525: Correct the argument name for NNTP.starttls() (GH-11310)

files:
M Doc/library/nntplib.rst

diff --git a/Doc/library/nntplib.rst b/Doc/library/nntplib.rst
index d8ef8a692a95..56188c7ef538 100644
--- a/Doc/library/nntplib.rst
+++ b/Doc/library/nntplib.rst
@@ -232,10 +232,10 @@ tuples or objects that the method normally returns will be empty.
    .. versionadded:: 3.2
 
 
-.. method:: NNTP.starttls(ssl_context=None)
+.. method:: NNTP.starttls(context=None)
 
    Send a ``STARTTLS`` command.  This will enable encryption on the NNTP
-   connection.  The *ssl_context* argument is optional and should be a
+   connection.  The *context* argument is optional and should be a
    :class:`ssl.SSLContext` object.  Please read :ref:`ssl-security` for best
    practices.
 



More information about the Python-checkins mailing list