This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Syntax error in the ssl module documentation
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: berker.peksag Nosy List: alex, berker.peksag, christian.heimes, docs@python, dstufft, giampaolo.rodola, janssen, pitrou, python-dev
Priority: normal Keywords: easy

Created on 2014-07-16 22:46 by alex, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg223291 - (view) Author: Alex Gaynor (alex) * (Python committer) Date: 2014-07-16 22:46
This can be seen at https://docs.python.org/3.4/library/ssl.html#ssl.SSLContext.check_hostname

It looks like the colon should be omitted, and the next line un-indented.
msg223308 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-07-17 02:01
New changeset 0045eec1e247 by Berker Peksag in branch '3.4':
Issue #21994: Fix SyntaxError in the SSLContext.check_hostname documentation.
http://hg.python.org/cpython/rev/0045eec1e247

New changeset 8039a20b18cc by Berker Peksag in branch 'default':
Issue #21994: Merge with 3.4.
http://hg.python.org/cpython/rev/8039a20b18cc
msg223309 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2014-07-17 02:03
Fixed. Thanks for the report.
History
Date User Action Args
2022-04-11 14:58:06adminsetgithub: 66193
2014-07-17 02:03:15berker.peksagsetstatus: open -> closed

type: behavior
assignee: docs@python -> berker.peksag

nosy: + berker.peksag
messages: + msg223309
resolution: fixed
stage: resolved
2014-07-17 02:01:46python-devsetnosy: + python-dev
messages: + msg223308
2014-07-16 22:46:59alexcreate