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 <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>
…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 <christian@python.org>
)

(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>
…GH-93495)

(cherry picked from commit e12f34b)

Co-authored-by: Mark Dickinson <dickinsm@gmail.com>

Co-authored-by: Mark Dickinson <dickinsm@gmail.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>
…-93490)

(cherry picked from commit 6f8367d)

Co-authored-by: Christian Heimes <christian@python.org>
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>
…3248)

(cherry picked from commit 9081bbd)

Co-authored-by: Cyker Way <cykerway@gmail.com>
(cherry picked from commit 4c71d22)

Co-authored-by: Christian Heimes <christian@python.org>
@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.

None yet