diff options
author | Meador Inge <meadori@gmail.com> | 2012-07-21 00:50:41 (GMT) |
---|---|---|
committer | Meador Inge <meadori@gmail.com> | 2012-07-21 00:50:41 (GMT) |
commit | 5116704ec5f12e68835bc0280bb8547eb457a5c7 (patch) | |
tree | 3f1f356a2037f1755d2d4f1786a68daa42583e81 /Doc/library/urllib.request.rst | |
parent | da1ffbc4eecb53d21b0a25fda9aa8989cbd7463b (diff) | |
download | cpython-5116704ec5f12e68835bc0280bb8547eb457a5c7.zip cpython-5116704ec5f12e68835bc0280bb8547eb457a5c7.tar.gz cpython-5116704ec5f12e68835bc0280bb8547eb457a5c7.tar.bz2 |
Issue #15410: Fix the urllib.request.Request.is_unverifiable deprecation documentation.
Diffstat (limited to 'Doc/library/urllib.request.rst')
-rw-r--r-- | Doc/library/urllib.request.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index 887e737..898fe71 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -537,7 +537,7 @@ request. Return whether the request is unverifiable, as defined by RFC 2965. See the documentation for the :class:`Request` constructor. Deprecated in 3.3, use - :attr:`Request.is_unverifiable`. + :attr:`Request.unverifiable`. .. deprecated:: 3.3 |