-
-
Notifications
You must be signed in to change notification settings - Fork 30.9k
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-29521 Fix two minor documentation build warnings (#41) #83
Merged
+5
−4
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Much of bpo-29521 was fixed in parallel with commit e7ffb99 . 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: -t In the Windows FAQ, `How do I keep editors from inserting tabs into my Python source?`, contained a reference to a Python -t option. In Python 2.x, this caused Python to issue warnings about lines with mixed spaces and tabs, but as of Python 3.6 it does nothing. Per discussion at http://bugs.python.org/issue29387, take their wording. Python [3] raises an IndentationError or TabError. Tabnanny is now a module. (cherry picked from commit 3d707be)
berkerpeksag
approved these changes
Feb 14, 2017
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Sep 9, 2017
…ed ones Clarify, that the scheduler callback must not be used to modify the internal state of stackless. Fix demo/tracing.py: Don't use flextype features. Unfortunately it is no longer possible to change the __repr__ method of class tasklet. Fix tracing.py, fakechannel.py and fakechannel2.py and update the copy of tracing.py in the documentation. Remove Stackless/demo/paelike/PyOpenSteer and Stackless/demo/stephan/stacklessness. https://bitbucket.org/stackless-dev/stackless/issue/83 (grafted from 410ed1df77dfae9b48519a06a4c232d65caa9745, c5cac8a05d68 and fb182bb2be4c)
jaraco
added a commit
to jaraco/cpython
that referenced
this pull request
Feb 17, 2023
jaraco
added a commit
to jaraco/cpython
that referenced
this pull request
Feb 17, 2023
jaraco
added a commit
to jaraco/cpython
that referenced
this pull request
Feb 17, 2023
Alternate fix for ImportError on Python 3.5.{0-3} with flake8-typing-imports Closes python#83 See merge request python-devs/importlib_resources!91
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Oct 10, 2023
update readme (cherry picked from commit 75c2b66)
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Oct 10, 2023
update readme (cherry picked from commit 75c2b66)
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Oct 10, 2023
update readme (cherry picked from commit 75c2b66)
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Oct 10, 2023
update readme (cherry picked from commit 75c2b66)
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Oct 10, 2023
update readme (cherry picked from commit 75c2b66)
Thanks @Mariatta for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
Sorry, @Mariatta, I could not cleanly backport this to
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Much of bpo-29521 was fixed in parallel with commit
e7ffb99 . 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: -t
In the Windows FAQ,
How do I keep editors from inserting tabs into my Python source?
, contained a reference to a Python -toption. In Python 2.x, this caused Python to issue warnings
about lines with mixed spaces and tabs, but as of Python 3.6
it does nothing.
Per discussion at http://bugs.python.org/issue29387, take
their wording. Python [3] raises an IndentationError or
TabError. Tabnanny is now a module.
Contributed by Jim DeLaHunt @JDLH
(cherry picked from commit 3d707be)