Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.1k
bpo-29521 Fix two minor documentation build warnings (#41)#84
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
Merged
Uh oh!
There was an error while loading.Please reload this page.
Conversation
This file contains hidden or 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 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)
berkerpeksag approved these changesFeb 14, 2017
akruis pushed a commit to akruis/cpython that referenced this pull requestSep 9, 2017
…p_next(...)Add the required STACKLESS_... macros to taskletobject.c tasklet_kill(...)and wrap_next(). Add a test class.https://bitbucket.org/stackless-dev/stackless/issue/84(grafted from 5d3898850c2f06d2a57b7589e4b5b8ebd9355e84, af52a8f20449 and27e7e0fa1709)
colesbury referenced this pull request in colesbury/nogilOct 6, 2021
This should fix errors like: File "python3.9/multiprocessing/resource_sharer.py", line 147, in _serve send, close = self._cache.pop(key)KeyError: 8Fixes#84
jaraco pushed a commit that referenced this pull requestDec 2, 2022
This was referencedFeb 11, 2025
Sign up for freeto 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 ofbpo-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 athttp://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 commit3d707be)