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: Unconverted RST marking in interpreter tutorial
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: berker.peksag, docs@python, nharold, python-dev
Priority: normal Keywords: patch

Created on 2016-06-01 21:20 by nharold, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
fix.diff nharold, 2016-06-01 21:20 change the line back review
Messages (3)
msg266840 - (view) Author: Nathan Harold (nharold) * Date: 2016-06-01 21:20
There's a bit of uninterpreted RST markup:

3.6.. _tut-using:

at the top of the second section of the tutorial (https://docs.python.org/3.6/tutorial/interpreter.html) in the documentation for 3.6 only.  (I can see this in the offline copy I received with 3.6.0a1 as well.)

It appears that this originated in 96328:dfe62f685538, which changed various references to Python to say 3.6 instead of 3.5.  This line had formerly just said:

.. _tut-using:

My best guess is that this was just an accident.  I can't find a precedent or meaning for the changed notation, and there were no similar changes to any other files, either.  I've included a patch for this line.
msg266841 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-06-01 21:28
New changeset a2ffc966363e by Berker Peksag in branch 'default':
Issue #27178: Fix markup in tutorial
https://hg.python.org/cpython/rev/a2ffc966363e
msg266842 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-06-01 21:29
Good catch! Thanks for patch, Nathan.
History
Date User Action Args
2022-04-11 14:58:31adminsetgithub: 71365
2016-06-01 21:29:08berker.peksagsetstatus: open -> closed

type: enhancement -> behavior

nosy: + berker.peksag
messages: + msg266842
resolution: fixed
stage: resolved
2016-06-01 21:28:26python-devsetnosy: + python-dev
messages: + msg266841
2016-06-01 21:20:04nharoldcreate