Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.1k
[2.7] bpo-29521: Fix two minor documentation build warnings (GH-41)#670
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Much of bpo-29521 was fixed in parallel with commite7ffb99 . This cleans up the rest.Apply parallel change to Doc/make.bat to read"set SPHINXOPTS=-D latex_elements.papersize="I don't have a Windows system on which to observe the warning,but it should be necessary.The warning:.../workspace/cpython_github/Doc/faq/windows.rst:303: WARNING: unknown option: -tIn the Windows FAQ, `How do I keep editors from inserting tabsinto my Python source?`, contained a reference to a Python -toption. In Python 2.x, this caused Python to issue warningsabout lines with mixed spaces and tabs, but as of Python 3.6it does nothing.Per discussion athttp://bugs.python.org/issue29387, taketheir wording. Python [3] raises an IndentationError orTabError. Tabnanny is now a module.(cherry picked from commit3d707be)
Doc/faq/windows.rst Outdated
run Python with the :option:`-t` switch or run ``Tools/Scripts/tabnanny.py`` to | ||
check a directory tree in batch mode. | ||
Python raises :exc:`IndentationError` or :exc:`TabError` if mixed tabs | ||
and spaces are causing problems in leading whitespace. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
In Python 2, you only get exceptions if you enable the "-tt" option. There shouldn’t be any Sphinx warning for Python 2.
@vadmium I cleaned up the trailing whitespace that travis build was complaining about. |
vadmium commentedMar 17, 2017 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Sorry I was actually talking about the original warning that I reportedhttps://bugs.python.org/issue29387: faq/windows.rst:303: WARNING: unknown option: -t This pull request is for the 2.7 branch. As far as I remember, the above warning should not be present on the 2.7 branch, because the “-t” option is useful and is documented athttps://docs.python.org/2.7/using/cmdline.html#cmdoption-t. Plus the new text is wrong: by default, Python 2 will accept code with mixed tabs and spaces in some cases. I suggest just fixing the second half of the sentence: If you suspect mixed tabs and spaces are causing problems in leading whitespace,run Python with the:option:`-t` switch or run the:mod:`tabnanny` module tocheck a directory tree in batch mode. (I would have done this myself, but I haven’t caught up with all the Git Hub changes.) |
@vadmium I updated the wordings as suggested. Please let me know if this works :) |
The tabnanny change looks fine to me. I have no idea if the Sphinx config is appropriate for 2.7 though. |
(cherry picked from commit3d707be)