Skip to content
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
wants to merge 410 commits into from
Closed

Conversation

Tinche
Copy link
Contributor

@Tinche Tinche commented Jul 11, 2022

Add docs for asyncio.timeout, asyncio.timeout_at and a short section on asyncio cancellation.

miss-islington and others added 30 commits May 29, 2022 23:02
…python#93339)

Co-authored-by: Terry Jan Reedy <[email protected]>
(cherry picked from commit 4f195f9)

Co-authored-by: luzpaz <[email protected]>
…by the parser is always consistent (pythonGH-93352)

(cherry picked from commit 5893b5d)

Co-authored-by: Pablo Galindo Salgado <[email protected]>
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 <[email protected]>
(cherry picked from commit 8a5e3c2)

Co-authored-by: Christian Heimes <[email protected]>
…can be compiled (pythonGH-93359)

(cherry picked from commit 705eaec)

Co-authored-by: Pablo Galindo Salgado <[email protected]>
… 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 <[email protected]>

* Regenerate ABI file

Co-authored-by: Serhiy Storchaka <[email protected]>
Co-authored-by: Pablo Galindo <[email protected]>
…ypeVarTuple (pythonGH-93346)

For example: tuple[*Ts, list[T]][int, str, bool]
(cherry picked from commit f545fc9)

Co-authored-by: Serhiy Storchaka <[email protected]>
… by an '=', but no closing brace. (pythongh-93419) (pythongh-93422)

(cherry picked from commit ee70c70)

Co-authored-by: Eric V. Smith <[email protected]>

Co-authored-by: Eric V. Smith <[email protected]>
…H-93436)

- Mark more ``umask()`` cases
- ``dup()`` is not supported
- ``/dev/null`` is not available
- document missing features
- mark more modules as not available
(cherry picked from commit 069c96f)

Co-authored-by: Christian Heimes <[email protected]>
…types/params (pythonGH-91993) (pythonGH-93458)

(cherry picked from commit b9509ba)


Co-authored-by: Petr Viktorin <[email protected]>

Automerge-Triggered-By: GH:encukou
…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 <[email protected]>
…maplib.py` (pythonGH-93237)

(cherry picked from commit 8150b8c)

Co-authored-by: jackh-ncl <[email protected]>
…GH-93495)

(cherry picked from commit e12f34b)

Co-authored-by: Mark Dickinson <[email protected]>

Co-authored-by: Mark Dickinson <[email protected]>
…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 <[email protected]>

Co-authored-by: Neil Schemenauer <[email protected]>
…hongh-93509)

(cherry picked from commit 713eb18)

Co-authored-by: Neil Schemenauer <[email protected]>

Co-authored-by: Neil Schemenauer <[email protected]>
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 <[email protected]>
(cherry picked from commit 4c71d22)

Co-authored-by: Christian Heimes <[email protected]>
@gvanrossum
Copy link
Member

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.