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: Missing indentation in using/windows.rst
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, mdk, python-dev, vstinner
Priority: normal Keywords: patch

Created on 2016-10-19 22:37 by mdk, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
using_windows_versionchanged.patch mdk, 2016-10-19 22:37 review
Messages (3)
msg278996 - (view) Author: Julien Palard (mdk) * (Python committer) Date: 2016-10-19 22:37
Hi,

In https://docs.python.org/3.7/using/windows.html, right before https://docs.python.org/3.7/using/windows.html#additional-modules, the "Changed in version 3.6:" content lacks an indentation.

It look like it's nothing, but it breaks the PDF generation, by generating invalid latex.

I attached the simple patch to fix this, and tested it, it's now rendered with the correct indentation and the PDF builds successfully.

A grep -A10 -r 'versionchanged::$' show no other problems of indentation on those blocks (and shows this is the right way to fix it).
msg278997 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-10-19 22:46
New changeset 39ac5093bdbb by Victor Stinner in branch '3.6':
Close #28479: Fix reST syntax in windows.rst
https://hg.python.org/cpython/rev/39ac5093bdbb
msg278998 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-10-19 22:47
Thanks for your contribution Julien.
History
Date User Action Args
2022-04-11 14:58:38adminsetgithub: 72665
2016-10-19 22:47:25vstinnersetnosy: + vstinner
messages: + msg278998
2016-10-19 22:46:55python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg278997

resolution: fixed
stage: resolved
2016-10-19 22:37:18mdkcreate