-
-
Notifications
You must be signed in to change notification settings - Fork 33.9k
bpo-41270 Added __next__ to _TemporaryFileWrapper #21434
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
Conversation
|
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept this contribution by verifying everyone involved has signed the PSF contributor agreement (CLA). Recognized GitHub usernameWe couldn't find a bugs.python.org (b.p.o) account corresponding to the following GitHub usernames: This might be simply due to a missing "GitHub Name" entry in one's b.p.o account settings. This is necessary for legal reasons before we can look at this contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. You can check yourself to see if the CLA has been received. Thanks again for the contribution, we look forward to reviewing it! |
|
@kk456852 it looks like the Travis CI update was missed. It looks like it's succeeded, but the status still says it's pending. |
Misc/NEWS.d/next/Library/2020-07-10-14-33-52.bpo-41270.pjUqyd.rst
Outdated
Show resolved
Hide resolved
Currently, empty sequences in gather rules make the conditional for gather rules fail as empty sequences evaluate as "False". We need to explicitly check for "None" (the failure condition) to avoid false negatives.
Partially revert commit 71d1bd9: don't use multi-phase initialization (PEP 489) for the _signal extension module.
…thonGH-21999) It contains now the name of the parameter instead of its index when parameters are supplied as a dict.
defusedexpat is not maintained.
…ythonGH-22098) Also fixes the error message returned when sysconfig fails to interpolate a variable correctly.
Ref. https://sqlite.org/c3ref/trace_v2.html Co-authored-by: Pablo Galindo <[email protected]>
Fixes incorrect Python version added for `venv` `--upgrade-deps` in python#13100. This feature was added in Python 3.9 not 3.8. Relates to: - - python@1cba1c9 Automerge-Triggered-By: @vsajip
Automerge-Triggered-By: @gvanrossum
…1818) Port the _sha1, _sha512, and _md5 extension modules to multi-phase initialization API (PEP 489).
Adding
__next__to _TemporaryFileWrapper so that NamedTemporaryFile acts more like a file object. Currently result of NamedTemporaryFile is not its own iterator.https://bugs.python.org/issue41270