💾 Archived View for tris.fyi › pydoc › asyncio.base_futures captured on 2023-01-29 at 03:52:16. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-01-08)

-=-=-=-=-=-=-

Back to module index

Go to module by name

asyncio

asyncio.base_futures

This module has no docstring.

Functions

get_ident

get_ident(...)

  get_ident() -> integer

  Return a non-zero integer that uniquely identifies the current thread
  amongst other threads that exist simultaneously.
  This may be used to identify per-thread resources.
  Even though on some platforms threads identities may appear to be
  allocated consecutive numbers starting at 1, this behavior should not
  be relied upon, and the number should be seen purely as a magic cookie.
  A thread's identity may be reused for another thread after it exits.

isfuture

isfuture(obj)

  Check for a Future.

      This returns True when obj is a Future instance or is advertising
      itself as duck-type compatible by setting _asyncio_future_blocking.
      See comment in Future for more details.
    

Modules

format_helpers

reprlib