-
-
Notifications
You must be signed in to change notification settings - Fork 31.4k
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
gh-46771: docs for asyncio.timeout #94764
Closed
Closed
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
…python#93339) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> (cherry picked from commit 4f195f9) Co-authored-by: luzpaz <luzpaz@users.noreply.github.com>
…by the parser is always consistent (pythonGH-93352) (cherry picked from commit 5893b5d) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
VOC has been archived by the BeeWare project, and they are instead embedding CPython, rather than transpiling to Java bytecode. (cherry picked from commit bb90071) Co-authored-by: Carl Bordum Hansen <carl@bordum.dk>
(cherry picked from commit 8a5e3c2) Co-authored-by: Christian Heimes <christian@python.org>
…can be compiled (pythonGH-93359) (cherry picked from commit 705eaec) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
… aliases (pythonGH-92335) (python#92484) * pythongh-91162: Fix substitution of unpacked tuples in generic aliases (pythonGH-92335) (cherry picked from commit 9d25db9) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> * Regenerate ABI file Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
…ypeVarTuple (pythonGH-93346) For example: tuple[*Ts, list[T]][int, str, bool] (cherry picked from commit f545fc9) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
(cherry picked from commit 5247389) Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
…es (pythonGH-93398) (pythonGH-93414) (cherry picked from commit 8a221a8) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
… by an '=', but no closing brace. (pythongh-93419) (pythongh-93422) (cherry picked from commit ee70c70) Co-authored-by: Eric V. Smith <ericvsmith@users.noreply.github.com> Co-authored-by: Eric V. Smith <ericvsmith@users.noreply.github.com>
…ythongh-92945) (cherry picked from commit b013804) Co-authored-by: Dong-hee Na <donghee.na@python.org>
…ythonGH-93460) (cherry picked from commit debf4c1)
) (cherry picked from commit d8f40ea) Co-authored-by: Victor Stinner <vstinner@python.org>
…types/params (pythonGH-91993) (pythonGH-93458) (cherry picked from commit b9509ba) Co-authored-by: Petr Viktorin <encukou@gmail.com> Automerge-Triggered-By: GH:encukou
…ythonGH-93473) (cherry picked from commit 1a8a0dd) Co-authored-by: Christian Heimes <christian@python.org>
…h().parents` (pythonGH-93273) When a `_PathParents` object has a drive or a root, the length of the object is *one less* than than the length of `self._parts`, which resulted in an off-by-one error when `path.parents[-n]` was fed through to `self._parts[:-n - 1]`. In particular, `path.parents[-1]` was a malformed path object with spooky properties. This is addressed by adding `len(self)` to negative indices. (cherry picked from commit f32e6b4) Co-authored-by: Barney Gale <barney.gale@gmail.com>
…maplib.py` (pythonGH-93237) (cherry picked from commit 8150b8c) Co-authored-by: jackh-ncl <1750152+jackh-ncl@users.noreply.github.com>
…nGH-93500) (pythongh-93507) Add C++ overloads for _Py_CAST_impl() to handle 0/NULL. This will allow C++ extensions that pass 0 or NULL to macros using _Py_CAST() to continue to compile. Without this, you get an error like: invalid ‘static_cast’ from type ‘int’ to type ‘_object*’ The modern way to use a NULL value in C++ is to use nullptr. However, we want to not break extensions that do things the old way. Co-authored-by: serge-sans-paille (cherry picked from commit 8bcc3fa) Co-authored-by: Neil Schemenauer <nas-github@arctrix.com> Co-authored-by: Neil Schemenauer <nas-github@arctrix.com>
…hongh-93509) (cherry picked from commit 713eb18) Co-authored-by: Neil Schemenauer <nas-github@arctrix.com> Co-authored-by: Neil Schemenauer <nas-github@arctrix.com>
Character ranges with upper bound less that lower bound (e.g. [c-a]) are now interpreted as empty ranges, for compatibility with other glob pattern implementations. Previously it was re.error. (cherry picked from commit 0902c3d) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
(cherry picked from commit 4c71d22) Co-authored-by: Christian Heimes <christian@python.org>
I'd use something like git cherry-pick to move your commits to a new branch created off main, and create a new PR from that. This one's dead. :-) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
awaiting review
docs
Documentation in the Doc dir
needs backport to 3.11
only security fixes
skip news
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.
Add docs for
asyncio.timeout
,asyncio.timeout_at
and a short section on asyncio cancellation.