basedpyright 1.25.0 → 1.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/pyright-langserver.js +1 -1
- package/dist/pyright-langserver.js.map +1 -1
- package/dist/pyright.js +1 -1
- package/dist/pyright.js.map +1 -1
- package/dist/typeshed-fallback/README.md +1 -1
- package/dist/typeshed-fallback/commit.txt +1 -1
- package/dist/typeshed-fallback/stdlib/VERSIONS +1 -0
- package/dist/typeshed-fallback/stdlib/_asyncio.pyi +3 -3
- package/dist/typeshed-fallback/stdlib/_blake2.pyi +12 -12
- package/dist/typeshed-fallback/stdlib/_bz2.pyi +7 -1
- package/dist/typeshed-fallback/stdlib/_collections_abc.pyi +3 -0
- package/dist/typeshed-fallback/stdlib/_contextvars.pyi +5 -3
- package/dist/typeshed-fallback/stdlib/_csv.pyi +4 -4
- package/dist/typeshed-fallback/stdlib/_ctypes.pyi +7 -7
- package/dist/typeshed-fallback/stdlib/_curses.pyi +3 -3
- package/dist/typeshed-fallback/stdlib/_dummy_threading.pyi +19 -127
- package/dist/typeshed-fallback/stdlib/_frozen_importlib.pyi +2 -1
- package/dist/typeshed-fallback/stdlib/_interpqueues.pyi +9 -6
- package/dist/typeshed-fallback/stdlib/_interpreters.pyi +3 -1
- package/dist/typeshed-fallback/stdlib/_io.pyi +1 -1
- package/dist/typeshed-fallback/stdlib/_json.pyi +5 -4
- package/dist/typeshed-fallback/stdlib/_lzma.pyi +16 -5
- package/dist/typeshed-fallback/stdlib/_pickle.pyi +286 -0
- package/dist/typeshed-fallback/stdlib/_sitebuiltins.pyi +3 -2
- package/dist/typeshed-fallback/stdlib/_socket.pyi +3 -1
- package/dist/typeshed-fallback/stdlib/_ssl.pyi +3 -4
- package/dist/typeshed-fallback/stdlib/_thread.pyi +87 -39
- package/dist/typeshed-fallback/stdlib/_tkinter.pyi +35 -20
- package/dist/typeshed-fallback/stdlib/_weakrefset.pyi +2 -1
- package/dist/typeshed-fallback/stdlib/argparse.pyi +27 -20
- package/dist/typeshed-fallback/stdlib/array.pyi +13 -10
- package/dist/typeshed-fallback/stdlib/ast.pyi +24 -7
- package/dist/typeshed-fallback/stdlib/asyncio/__init__.pyi +1300 -0
- package/dist/typeshed-fallback/stdlib/asyncio/base_events.pyi +2 -0
- package/dist/typeshed-fallback/stdlib/asyncio/coroutines.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/events.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/exceptions.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/futures.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/locks.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/proactor_events.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/protocols.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/queues.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/runners.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/selector_events.pyi +2 -0
- package/dist/typeshed-fallback/stdlib/asyncio/streams.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/subprocess.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/taskgroups.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/tasks.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/threads.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/timeouts.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/transports.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/asyncio/unix_events.pyi +3 -0
- package/dist/typeshed-fallback/stdlib/asyncio/windows_events.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/builtins.pyi +21 -15
- package/dist/typeshed-fallback/stdlib/codecs.pyi +2 -0
- package/dist/typeshed-fallback/stdlib/codeop.pyi +5 -1
- package/dist/typeshed-fallback/stdlib/collections/__init__.pyi +3 -1
- package/dist/typeshed-fallback/stdlib/concurrent/futures/process.pyi +12 -2
- package/dist/typeshed-fallback/stdlib/contextlib.pyi +21 -22
- package/dist/typeshed-fallback/stdlib/ctypes/__init__.pyi +69 -18
- package/dist/typeshed-fallback/stdlib/dataclasses.pyi +11 -3
- package/dist/typeshed-fallback/stdlib/datetime.pyi +1 -1
- package/dist/typeshed-fallback/stdlib/decimal.pyi +0 -1
- package/dist/typeshed-fallback/stdlib/email/charset.pyi +2 -1
- package/dist/typeshed-fallback/stdlib/email/header.pyi +2 -1
- package/dist/typeshed-fallback/stdlib/email/headerregistry.pyi +2 -0
- package/dist/typeshed-fallback/stdlib/fractions.pyi +3 -3
- package/dist/typeshed-fallback/stdlib/gzip.pyi +5 -5
- package/dist/typeshed-fallback/stdlib/http/__init__.pyi +15 -6
- package/dist/typeshed-fallback/stdlib/http/client.pyi +80 -58
- package/dist/typeshed-fallback/stdlib/inspect.pyi +5 -5
- package/dist/typeshed-fallback/stdlib/ipaddress.pyi +5 -3
- package/dist/typeshed-fallback/stdlib/itertools.pyi +12 -12
- package/dist/typeshed-fallback/stdlib/json/scanner.pyi +4 -0
- package/dist/typeshed-fallback/stdlib/lib2to3/pgen2/pgen.pyi +2 -1
- package/dist/typeshed-fallback/stdlib/lib2to3/pytree.pyi +2 -1
- package/dist/typeshed-fallback/stdlib/mmap.pyi +6 -6
- package/dist/typeshed-fallback/stdlib/multiprocessing/managers.pyi +63 -17
- package/dist/typeshed-fallback/stdlib/multiprocessing/pool.pyi +3 -0
- package/dist/typeshed-fallback/stdlib/multiprocessing/reduction.pyi +1 -1
- package/dist/typeshed-fallback/stdlib/multiprocessing/synchronize.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/numbers.pyi +2 -1
- package/dist/typeshed-fallback/stdlib/operator.pyi +2 -2
- package/dist/typeshed-fallback/stdlib/optparse.pyi +89 -32
- package/dist/typeshed-fallback/stdlib/os/__init__.pyi +1 -0
- package/dist/typeshed-fallback/stdlib/parser.pyi +2 -1
- package/dist/typeshed-fallback/stdlib/pickle.pyi +51 -266
- package/dist/typeshed-fallback/stdlib/pickletools.pyi +8 -1
- package/dist/typeshed-fallback/stdlib/plistlib.pyi +2 -1
- package/dist/typeshed-fallback/stdlib/sched.pyi +3 -2
- package/dist/typeshed-fallback/stdlib/select.pyi +19 -13
- package/dist/typeshed-fallback/stdlib/selectors.pyi +5 -3
- package/dist/typeshed-fallback/stdlib/signal.pyi +47 -47
- package/dist/typeshed-fallback/stdlib/socket.pyi +8 -6
- package/dist/typeshed-fallback/stdlib/sqlite3/__init__.pyi +1 -1
- package/dist/typeshed-fallback/stdlib/ssl.pyi +4 -0
- package/dist/typeshed-fallback/stdlib/sys/__init__.pyi +9 -3
- package/dist/typeshed-fallback/stdlib/tarfile.pyi +24 -10
- package/dist/typeshed-fallback/stdlib/telnetlib.pyi +2 -2
- package/dist/typeshed-fallback/stdlib/threading.pyi +6 -53
- package/dist/typeshed-fallback/stdlib/tkinter/__init__.pyi +193 -3
- package/dist/typeshed-fallback/stdlib/tkinter/filedialog.pyi +9 -9
- package/dist/typeshed-fallback/stdlib/tkinter/font.pyi +5 -4
- package/dist/typeshed-fallback/stdlib/token.pyi +1 -1
- package/dist/typeshed-fallback/stdlib/tokenize.pyi +3 -4
- package/dist/typeshed-fallback/stdlib/traceback.pyi +17 -4
- package/dist/typeshed-fallback/stdlib/types.pyi +45 -10
- package/dist/typeshed-fallback/stdlib/typing.pyi +45 -47
- package/dist/typeshed-fallback/stdlib/typing_extensions.pyi +53 -12
- package/dist/typeshed-fallback/stdlib/unittest/mock.pyi +3 -1
- package/dist/typeshed-fallback/stdlib/unittest/runner.pyi +11 -12
- package/dist/typeshed-fallback/stdlib/unittest/suite.pyi +2 -0
- package/dist/typeshed-fallback/stdlib/weakref.pyi +19 -5
- package/dist/typeshed-fallback/stdlib/xml/dom/minidom.pyi +5 -4
- package/dist/typeshed-fallback/stdlib/xml/sax/expatreader.pyi +53 -0
- package/dist/typeshed-fallback/stdlib/xmlrpc/client.pyi +4 -3
- package/dist/typeshed-fallback/stdlib/xxlimited.pyi +4 -2
- package/dist/typeshed-fallback/stdlib/zipfile/_path/glob.pyi +22 -0
- package/dist/typeshed-fallback/stdlib/zoneinfo/__init__.pyi +1 -1
- package/dist/typeshed-fallback/stubs/Authlib/METADATA.toml +7 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/__init__.pyi +4 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/common/encoding.pyi +10 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/common/errors.pyi +26 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/common/security.pyi +4 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/common/urls.pyi +19 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/consts.pyi +8 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/deprecate.pyi +7 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/__init__.pyi +0 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/__init__.pyi +29 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +16 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/async_openid.pyi +8 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/errors.pyi +23 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/framework_integration.pyi +13 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/registry.pyi +21 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/sync_app.pyi +93 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/sync_openid.pyi +7 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/__init__.pyi +44 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/drafts/__init__.pyi +3 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/drafts/_jwe_algorithms.pyi +27 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/drafts/_jwe_enc_cryptodome.pyi +13 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/drafts/_jwe_enc_cryptography.pyi +13 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/errors.pyi +72 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/jwk.pyi +4 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7515/__init__.pyi +4 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7515/jws.pyi +14 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7515/models.pyi +25 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7516/__init__.pyi +9 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7516/jwe.pyi +23 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7516/models.pyi +56 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/__init__.pyi +7 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/_cryptography_key.pyi +5 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/asymmetric_key.pyi +39 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/base_key.pyi +28 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/jwk.pyi +13 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/key_set.pyi +10 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/__init__.pyi +20 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/ec_key.pyi +24 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/jwe_algs.pyi +64 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/jwe_encs.pyi +27 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/jwe_zips.pyi +9 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/jws_algs.pyi +63 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/oct_key.pyi +23 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/rsa_key.pyi +23 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/util.pyi +2 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7519/__init__.pyi +4 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7519/claims.pyi +21 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7519/jwt.pyi +21 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc8037/__init__.pyi +4 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc8037/jws_eddsa.pyi +10 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc8037/okp_key.pyi +24 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/util.pyi +3 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/__init__.pyi +33 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/client.pyi +39 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/errors.pyi +1 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/__init__.pyi +35 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/authorization_server.pyi +21 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/base_server.pyi +12 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/client_auth.pyi +41 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/errors.pyi +56 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/models.pyi +21 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/parameters.pyi +5 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/resource_protector.pyi +5 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/rsa.pyi +2 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/signature.pyi +22 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/util.pyi +2 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/wrapper.pyi +33 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/__init__.pyi +22 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/auth.pyi +24 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/base.pyi +20 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/client.pyi +96 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/__init__.pyi +76 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/authenticate_client.pyi +13 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/authorization_server.pyi +46 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/errors.pyi +92 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/__init__.pyi +21 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/authorization_code.pyi +24 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/base.pyi +55 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/client_credentials.pyi +6 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/implicit.pyi +12 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/refresh_token.pyi +15 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/resource_owner_password_credentials.pyi +7 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/models.pyi +22 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/parameters.pyi +14 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/requests.pyi +48 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/resource_protector.pyi +19 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/token_endpoint.pyi +13 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/util.pyi +5 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/wrappers.pyi +5 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6750/__init__.pyi +15 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6750/errors.pyi +27 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6750/parameters.pyi +6 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6750/token.pyi +41 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6750/validator.pyi +6 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7009/__init__.pyi +4 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7009/parameters.pyi +5 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7009/revocation.pyi +9 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7521/__init__.pyi +3 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7521/client.pyi +39 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/__init__.pyi +18 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/assertion.pyi +19 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/auth.pyi +22 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/client.pyi +16 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/jwt_bearer.pyi +28 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/token.pyi +30 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/validator.pyi +24 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7591/__init__.pyi +17 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7591/claims.pyi +22 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7591/endpoint.pyi +24 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7591/errors.pyi +13 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7592/__init__.pyi +3 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7592/endpoint.pyi +26 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7636/__init__.pyi +3 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7636/challenge.pyi +20 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7662/__init__.pyi +5 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7662/introspection.pyi +11 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7662/models.pyi +8 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7662/token_validator.pyi +7 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8414/__init__.pyi +4 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8414/models.pyi +40 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8414/well_known.pyi +1 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8628/__init__.pyi +19 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8628/device_code.pyi +15 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8628/endpoint.pyi +21 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8628/errors.pyi +10 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8628/models.pyi +13 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8693/__init__.pyi +0 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/__init__.pyi +6 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/claims.pyi +16 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/introspection.pyi +13 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/revocation.pyi +9 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/token.pyi +23 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/token_validator.pyi +20 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/__init__.pyi +0 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/__init__.pyi +29 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/claims.pyi +37 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/errors.pyi +28 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/grants/__init__.pyi +5 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/grants/code.pyi +17 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/grants/hybrid.pyi +13 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/grants/implicit.pyi +16 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/grants/util.pyi +18 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/models.pyi +5 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/util.pyi +1 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/discovery/__init__.pyi +4 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/discovery/models.pyi +36 -0
- package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/discovery/well_known.pyi +1 -0
- package/dist/typeshed-fallback/stubs/Flask-Migrate/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/Flask-Migrate/flask_migrate/__init__.pyi +2 -4
- package/dist/typeshed-fallback/stubs/Flask-SocketIO/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/Flask-SocketIO/flask_socketio/__init__.pyi +30 -4
- package/dist/typeshed-fallback/stubs/Markdown/markdown/core.pyi +2 -13
- package/dist/typeshed-fallback/stubs/PyAutoGUI/pyautogui/__init__.pyi +2 -2
- package/dist/typeshed-fallback/stubs/PyYAML/yaml/constructor.pyi +1 -1
- package/dist/typeshed-fallback/stubs/Pygments/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/WebOb/webob/exc.pyi +1 -1
- package/dist/typeshed-fallback/stubs/click-log/METADATA.toml +3 -0
- package/dist/typeshed-fallback/stubs/click-log/click_log/__init__.pyi +4 -0
- package/dist/typeshed-fallback/stubs/click-log/click_log/core.pyi +15 -0
- package/dist/typeshed-fallback/stubs/click-log/click_log/options.pyi +12 -0
- package/dist/typeshed-fallback/stubs/click-web/METADATA.toml +3 -0
- package/dist/typeshed-fallback/stubs/click-web/click_web/__init__.pyi +16 -0
- package/dist/typeshed-fallback/stubs/click-web/click_web/exceptions.pyi +2 -0
- package/dist/typeshed-fallback/stubs/click-web/click_web/resources/cmd_exec.pyi +79 -0
- package/dist/typeshed-fallback/stubs/click-web/click_web/resources/cmd_form.pyi +6 -0
- package/dist/typeshed-fallback/stubs/click-web/click_web/resources/index.pyi +6 -0
- package/dist/typeshed-fallback/stubs/click-web/click_web/resources/input_fields.pyi +49 -0
- package/dist/typeshed-fallback/stubs/click-web/click_web/web_click_types.pyi +18 -0
- package/dist/typeshed-fallback/stubs/croniter/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/croniter/croniter/croniter.pyi +7 -0
- package/dist/typeshed-fallback/stubs/django-import-export/METADATA.toml +6 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/__init__.pyi +1 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/admin.pyi +114 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/exceptions.pyi +2 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/fields.pyi +34 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/formats/__init__.pyi +0 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/formats/base_formats.pyi +57 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/forms.pyi +31 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/instance_loaders.pyi +23 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/mixins.pyi +66 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/resources.pyi +232 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/results.pyi +73 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/signals.pyi +4 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/templatetags/__init__.pyi +0 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/templatetags/import_export_tags.pyi +8 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/tmp_storages.pyi +34 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/utils.pyi +18 -0
- package/dist/typeshed-fallback/stubs/django-import-export/import_export/widgets.pyi +66 -0
- package/dist/typeshed-fallback/stubs/docker/docker/models/containers.pyi +2 -2
- package/dist/typeshed-fallback/stubs/flake8-bugbear/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/fpdf2/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/__init__.pyi +2 -0
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/annotations.pyi +2 -2
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/enums.pyi +50 -4
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/fonts.pyi +3 -3
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/fpdf.pyi +53 -18
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/html.pyi +2 -0
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/image_parsing.pyi +10 -2
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/line_break.pyi +9 -3
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/outline.pyi +21 -0
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/output.pyi +19 -0
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/prefs.pyi +38 -4
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/table.pyi +13 -1
- package/dist/typeshed-fallback/stubs/fpdf2/fpdf/util.pyi +1 -0
- package/dist/typeshed-fallback/stubs/gdb/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/gdb/gdb/__init__.pyi +126 -9
- package/dist/typeshed-fallback/stubs/gdb/gdb/unwinder.pyi +2 -3
- package/dist/typeshed-fallback/stubs/gevent/gevent/select.pyi +7 -2
- package/dist/typeshed-fallback/stubs/hdbcli/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/ibm-db/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/ibm-db/ibm_db.pyi +11 -1
- package/dist/typeshed-fallback/stubs/icalendar/METADATA.toml +1 -5
- package/dist/typeshed-fallback/stubs/icalendar/icalendar/timezone/tzp.pyi +1 -1
- package/dist/typeshed-fallback/stubs/jsonschema/METADATA.toml +0 -2
- package/dist/typeshed-fallback/stubs/jwcrypto/jwcrypto/jwk.pyi +4 -4
- package/dist/typeshed-fallback/stubs/lupa/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/m3u8/m3u8/httpclient.pyi +1 -1
- package/dist/typeshed-fallback/stubs/nanoleafapi/METADATA.toml +2 -0
- package/dist/typeshed-fallback/stubs/nanoleafapi/nanoleafapi/__init__.pyi +16 -0
- package/dist/typeshed-fallback/stubs/nanoleafapi/nanoleafapi/digital_twin.pyi +12 -0
- package/dist/typeshed-fallback/stubs/nanoleafapi/nanoleafapi/discovery.pyi +1 -0
- package/dist/typeshed-fallback/stubs/nanoleafapi/nanoleafapi/nanoleaf.pyi +68 -0
- package/dist/typeshed-fallback/stubs/networkx/networkx/classes/multidigraph.pyi +1 -1
- package/dist/typeshed-fallback/stubs/openpyxl/openpyxl/styles/cell_style.pyi +1 -1
- package/dist/typeshed-fallback/stubs/peewee/peewee.pyi +4 -4
- package/dist/typeshed-fallback/stubs/pexpect/pexpect/pty_spawn.pyi +1 -1
- package/dist/typeshed-fallback/stubs/pika/pika/credentials.pyi +10 -7
- package/dist/typeshed-fallback/stubs/polib/polib.pyi +3 -2
- package/dist/typeshed-fallback/stubs/protobuf/METADATA.toml +2 -2
- package/dist/typeshed-fallback/stubs/protobuf/google/protobuf/api_pb2.pyi +1 -1
- package/dist/typeshed-fallback/stubs/protobuf/google/protobuf/descriptor_pb2.pyi +4 -8
- package/dist/typeshed-fallback/stubs/protobuf/google/protobuf/runtime_version.pyi +23 -0
- package/dist/typeshed-fallback/stubs/pycocotools/METADATA.toml +1 -0
- package/dist/typeshed-fallback/stubs/pycocotools/pycocotools/coco.pyi +6 -11
- package/dist/typeshed-fallback/stubs/pycocotools/pycocotools/cocoeval.pyi +16 -30
- package/dist/typeshed-fallback/stubs/pycocotools/pycocotools/mask.pyi +7 -9
- package/dist/typeshed-fallback/stubs/pycurl/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/pycurl/pycurl.pyi +33 -32
- package/dist/typeshed-fallback/stubs/pynput/pynput/keyboard/_base.pyi +65 -65
- package/dist/typeshed-fallback/stubs/python-dateutil/dateutil/relativedelta.pyi +3 -11
- package/dist/typeshed-fallback/stubs/pywin32/_win32typing.pyi +3 -3
- package/dist/typeshed-fallback/stubs/qrbill/qrbill/bill.pyi +2 -2
- package/dist/typeshed-fallback/stubs/requests-oauthlib/requests_oauthlib/oauth1_auth.pyi +1 -1
- package/dist/typeshed-fallback/stubs/seaborn/METADATA.toml +1 -11
- package/dist/typeshed-fallback/stubs/seaborn/seaborn/algorithms.pyi +13 -13
- package/dist/typeshed-fallback/stubs/setuptools/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/setuptools/setuptools/_distutils/cmd.pyi +5 -0
- package/dist/typeshed-fallback/stubs/setuptools/setuptools/_distutils/command/bdist.pyi +1 -1
- package/dist/typeshed-fallback/stubs/setuptools/setuptools/_distutils/command/install_data.pyi +2 -1
- package/dist/typeshed-fallback/stubs/setuptools/setuptools/_distutils/dist.pyi +21 -21
- package/dist/typeshed-fallback/stubs/setuptools/setuptools/_distutils/extension.pyi +3 -4
- package/dist/typeshed-fallback/stubs/setuptools/setuptools/extension.pyi +2 -3
- package/dist/typeshed-fallback/stubs/shapely/shapely/_enum.pyi +1 -1
- package/dist/typeshed-fallback/stubs/six/METADATA.toml +1 -1
- package/dist/typeshed-fallback/stubs/tabulate/tabulate/__init__.pyi +2 -1
- package/dist/typeshed-fallback/stubs/tqdm/tqdm/asyncio.pyi +2 -2
- package/dist/typeshed-fallback/stubs/vobject/METADATA.toml +2 -2
- package/dist/typeshed-fallback/stubs/vobject/vobject/__init__.pyi +2 -4
- package/dist/typeshed-fallback/stubs/vobject/vobject/base.pyi +26 -24
- package/dist/typeshed-fallback/stubs/vobject/vobject/behavior.pyi +5 -4
- package/dist/typeshed-fallback/stubs/vobject/vobject/icalendar.pyi +28 -37
- package/dist/typeshed-fallback/stubs/vobject/vobject/vcard.pyi +20 -20
- package/dist/typeshed-fallback/stubs/vobject/vobject/win32tz.pyi +22 -22
- package/package.json +1 -1
- package/dist/typeshed-fallback/stubs/python-gflags/METADATA.toml +0 -2
- package/dist/typeshed-fallback/stubs/python-gflags/gflags.pyi +0 -309
- package/dist/typeshed-fallback/stubs/redis/METADATA.toml +0 -12
- package/dist/typeshed-fallback/stubs/redis/redis/__init__.pyi +0 -72
- package/dist/typeshed-fallback/stubs/redis/redis/asyncio/__init__.pyi +0 -64
- package/dist/typeshed-fallback/stubs/redis/redis/asyncio/client.pyi +0 -1091
- package/dist/typeshed-fallback/stubs/redis/redis/asyncio/cluster.pyi +0 -229
- package/dist/typeshed-fallback/stubs/redis/redis/asyncio/connection.pyi +0 -363
- package/dist/typeshed-fallback/stubs/redis/redis/asyncio/lock.pyi +0 -51
- package/dist/typeshed-fallback/stubs/redis/redis/asyncio/parser.pyi +0 -9
- package/dist/typeshed-fallback/stubs/redis/redis/asyncio/retry.pyi +0 -12
- package/dist/typeshed-fallback/stubs/redis/redis/asyncio/sentinel.pyi +0 -162
- package/dist/typeshed-fallback/stubs/redis/redis/asyncio/utils.pyi +0 -15
- package/dist/typeshed-fallback/stubs/redis/redis/backoff.pyi +0 -31
- package/dist/typeshed-fallback/stubs/redis/redis/client.pyi +0 -817
- package/dist/typeshed-fallback/stubs/redis/redis/cluster.pyi +0 -265
- package/dist/typeshed-fallback/stubs/redis/redis/commands/__init__.pyi +0 -17
- package/dist/typeshed-fallback/stubs/redis/redis/commands/bf/__init__.pyi +0 -58
- package/dist/typeshed-fallback/stubs/redis/redis/commands/bf/commands.pyi +0 -112
- package/dist/typeshed-fallback/stubs/redis/redis/commands/bf/info.pyi +0 -43
- package/dist/typeshed-fallback/stubs/redis/redis/commands/cluster.pyi +0 -60
- package/dist/typeshed-fallback/stubs/redis/redis/commands/core.pyi +0 -1743
- package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/__init__.pyi +0 -26
- package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/commands.pyi +0 -25
- package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/edge.pyi +0 -14
- package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/exceptions.pyi +0 -5
- package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/node.pyi +0 -18
- package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/path.pyi +0 -18
- package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/query_result.pyi +0 -74
- package/dist/typeshed-fallback/stubs/redis/redis/commands/helpers.pyi +0 -10
- package/dist/typeshed-fallback/stubs/redis/redis/commands/json/__init__.pyi +0 -15
- package/dist/typeshed-fallback/stubs/redis/redis/commands/json/commands.pyi +0 -32
- package/dist/typeshed-fallback/stubs/redis/redis/commands/json/decoders.pyi +0 -4
- package/dist/typeshed-fallback/stubs/redis/redis/commands/json/path.pyi +0 -5
- package/dist/typeshed-fallback/stubs/redis/redis/commands/parser.pyi +0 -8
- package/dist/typeshed-fallback/stubs/redis/redis/commands/redismodules.pyi +0 -14
- package/dist/typeshed-fallback/stubs/redis/redis/commands/search/__init__.pyi +0 -22
- package/dist/typeshed-fallback/stubs/redis/redis/commands/search/aggregation.pyi +0 -53
- package/dist/typeshed-fallback/stubs/redis/redis/commands/search/commands.pyi +0 -111
- package/dist/typeshed-fallback/stubs/redis/redis/commands/search/query.pyi +0 -52
- package/dist/typeshed-fallback/stubs/redis/redis/commands/search/result.pyi +0 -7
- package/dist/typeshed-fallback/stubs/redis/redis/commands/sentinel.pyi +0 -17
- package/dist/typeshed-fallback/stubs/redis/redis/commands/timeseries/__init__.pyi +0 -14
- package/dist/typeshed-fallback/stubs/redis/redis/commands/timeseries/commands.pyi +0 -160
- package/dist/typeshed-fallback/stubs/redis/redis/commands/timeseries/info.pyi +0 -18
- package/dist/typeshed-fallback/stubs/redis/redis/commands/timeseries/utils.pyi +0 -5
- package/dist/typeshed-fallback/stubs/redis/redis/connection.pyi +0 -289
- package/dist/typeshed-fallback/stubs/redis/redis/crc.pyi +0 -5
- package/dist/typeshed-fallback/stubs/redis/redis/credentials.pyi +0 -11
- package/dist/typeshed-fallback/stubs/redis/redis/exceptions.pyi +0 -42
- package/dist/typeshed-fallback/stubs/redis/redis/lock.pyi +0 -56
- package/dist/typeshed-fallback/stubs/redis/redis/ocsp.pyi +0 -21
- package/dist/typeshed-fallback/stubs/redis/redis/retry.pyi +0 -11
- package/dist/typeshed-fallback/stubs/redis/redis/sentinel.pyi +0 -62
- package/dist/typeshed-fallback/stubs/redis/redis/typing.pyi +0 -34
- package/dist/typeshed-fallback/stubs/redis/redis/utils.pyi +0 -22
- package/dist/typeshed-fallback/stubs/setuptools/setuptools/compat/py310.pyi +0 -9
- package/dist/typeshed-fallback/stubs/setuptools/setuptools/compat/py311.pyi +0 -4
- package/dist/typeshed-fallback/stubs/setuptools/setuptools/compat/py312.pyi +0 -3
- package/dist/typeshed-fallback/stubs/setuptools/setuptools/compat/py39.pyi +0 -7
- /package/dist/typeshed-fallback/stdlib/zipfile/{_path.pyi → _path/__init__.pyi} +0 -0
- /package/dist/typeshed-fallback/stubs/{setuptools/setuptools/compat → Authlib/authlib/common}/__init__.pyi +0 -0
|
@@ -30,6 +30,1306 @@ if sys.platform == "win32":
|
|
|
30
30
|
else:
|
|
31
31
|
from .unix_events import *
|
|
32
32
|
|
|
33
|
+
if sys.platform == "win32":
|
|
34
|
+
if sys.version_info >= (3, 14):
|
|
35
|
+
__all__ = (
|
|
36
|
+
"BaseEventLoop", # from base_events
|
|
37
|
+
"Server", # from base_events
|
|
38
|
+
"iscoroutinefunction", # from coroutines
|
|
39
|
+
"iscoroutine", # from coroutines
|
|
40
|
+
"AbstractEventLoopPolicy", # from events
|
|
41
|
+
"AbstractEventLoop", # from events
|
|
42
|
+
"AbstractServer", # from events
|
|
43
|
+
"Handle", # from events
|
|
44
|
+
"TimerHandle", # from events
|
|
45
|
+
"get_event_loop_policy", # from events
|
|
46
|
+
"set_event_loop_policy", # from events
|
|
47
|
+
"get_event_loop", # from events
|
|
48
|
+
"set_event_loop", # from events
|
|
49
|
+
"new_event_loop", # from events
|
|
50
|
+
"_set_running_loop", # from events
|
|
51
|
+
"get_running_loop", # from events
|
|
52
|
+
"_get_running_loop", # from events
|
|
53
|
+
"BrokenBarrierError", # from exceptions
|
|
54
|
+
"CancelledError", # from exceptions
|
|
55
|
+
"InvalidStateError", # from exceptions
|
|
56
|
+
"TimeoutError", # from exceptions
|
|
57
|
+
"IncompleteReadError", # from exceptions
|
|
58
|
+
"LimitOverrunError", # from exceptions
|
|
59
|
+
"SendfileNotAvailableError", # from exceptions
|
|
60
|
+
"Future", # from futures
|
|
61
|
+
"wrap_future", # from futures
|
|
62
|
+
"isfuture", # from futures
|
|
63
|
+
"Lock", # from locks
|
|
64
|
+
"Event", # from locks
|
|
65
|
+
"Condition", # from locks
|
|
66
|
+
"Semaphore", # from locks
|
|
67
|
+
"BoundedSemaphore", # from locks
|
|
68
|
+
"Barrier", # from locks
|
|
69
|
+
"BaseProtocol", # from protocols
|
|
70
|
+
"Protocol", # from protocols
|
|
71
|
+
"DatagramProtocol", # from protocols
|
|
72
|
+
"SubprocessProtocol", # from protocols
|
|
73
|
+
"BufferedProtocol", # from protocols
|
|
74
|
+
"Runner", # from runners
|
|
75
|
+
"run", # from runners
|
|
76
|
+
"Queue", # from queues
|
|
77
|
+
"PriorityQueue", # from queues
|
|
78
|
+
"LifoQueue", # from queues
|
|
79
|
+
"QueueFull", # from queues
|
|
80
|
+
"QueueEmpty", # from queues
|
|
81
|
+
"QueueShutDown", # from queues
|
|
82
|
+
"StreamReader", # from streams
|
|
83
|
+
"StreamWriter", # from streams
|
|
84
|
+
"StreamReaderProtocol", # from streams
|
|
85
|
+
"open_connection", # from streams
|
|
86
|
+
"start_server", # from streams
|
|
87
|
+
"create_subprocess_exec", # from subprocess
|
|
88
|
+
"create_subprocess_shell", # from subprocess
|
|
89
|
+
"Task", # from tasks
|
|
90
|
+
"create_task", # from tasks
|
|
91
|
+
"FIRST_COMPLETED", # from tasks
|
|
92
|
+
"FIRST_EXCEPTION", # from tasks
|
|
93
|
+
"ALL_COMPLETED", # from tasks
|
|
94
|
+
"wait", # from tasks
|
|
95
|
+
"wait_for", # from tasks
|
|
96
|
+
"as_completed", # from tasks
|
|
97
|
+
"sleep", # from tasks
|
|
98
|
+
"gather", # from tasks
|
|
99
|
+
"shield", # from tasks
|
|
100
|
+
"ensure_future", # from tasks
|
|
101
|
+
"run_coroutine_threadsafe", # from tasks
|
|
102
|
+
"current_task", # from tasks
|
|
103
|
+
"all_tasks", # from tasks
|
|
104
|
+
"create_eager_task_factory", # from tasks
|
|
105
|
+
"eager_task_factory", # from tasks
|
|
106
|
+
"_register_task", # from tasks
|
|
107
|
+
"_unregister_task", # from tasks
|
|
108
|
+
"_enter_task", # from tasks
|
|
109
|
+
"_leave_task", # from tasks
|
|
110
|
+
"TaskGroup", # from taskgroups
|
|
111
|
+
"to_thread", # from threads
|
|
112
|
+
"Timeout", # from timeouts
|
|
113
|
+
"timeout", # from timeouts
|
|
114
|
+
"timeout_at", # from timeouts
|
|
115
|
+
"BaseTransport", # from transports
|
|
116
|
+
"ReadTransport", # from transports
|
|
117
|
+
"WriteTransport", # from transports
|
|
118
|
+
"Transport", # from transports
|
|
119
|
+
"DatagramTransport", # from transports
|
|
120
|
+
"SubprocessTransport", # from transports
|
|
121
|
+
"SelectorEventLoop", # from windows_events
|
|
122
|
+
"ProactorEventLoop", # from windows_events
|
|
123
|
+
"IocpProactor", # from windows_events
|
|
124
|
+
"DefaultEventLoopPolicy", # from windows_events
|
|
125
|
+
"WindowsSelectorEventLoopPolicy", # from windows_events
|
|
126
|
+
"WindowsProactorEventLoopPolicy", # from windows_events
|
|
127
|
+
"EventLoop", # from windows_events
|
|
128
|
+
)
|
|
129
|
+
elif sys.version_info >= (3, 13):
|
|
130
|
+
__all__ = (
|
|
131
|
+
"BaseEventLoop", # from base_events
|
|
132
|
+
"Server", # from base_events
|
|
133
|
+
"iscoroutinefunction", # from coroutines
|
|
134
|
+
"iscoroutine", # from coroutines
|
|
135
|
+
"AbstractEventLoopPolicy", # from events
|
|
136
|
+
"AbstractEventLoop", # from events
|
|
137
|
+
"AbstractServer", # from events
|
|
138
|
+
"Handle", # from events
|
|
139
|
+
"TimerHandle", # from events
|
|
140
|
+
"get_event_loop_policy", # from events
|
|
141
|
+
"set_event_loop_policy", # from events
|
|
142
|
+
"get_event_loop", # from events
|
|
143
|
+
"set_event_loop", # from events
|
|
144
|
+
"new_event_loop", # from events
|
|
145
|
+
"get_child_watcher", # from events
|
|
146
|
+
"set_child_watcher", # from events
|
|
147
|
+
"_set_running_loop", # from events
|
|
148
|
+
"get_running_loop", # from events
|
|
149
|
+
"_get_running_loop", # from events
|
|
150
|
+
"BrokenBarrierError", # from exceptions
|
|
151
|
+
"CancelledError", # from exceptions
|
|
152
|
+
"InvalidStateError", # from exceptions
|
|
153
|
+
"TimeoutError", # from exceptions
|
|
154
|
+
"IncompleteReadError", # from exceptions
|
|
155
|
+
"LimitOverrunError", # from exceptions
|
|
156
|
+
"SendfileNotAvailableError", # from exceptions
|
|
157
|
+
"Future", # from futures
|
|
158
|
+
"wrap_future", # from futures
|
|
159
|
+
"isfuture", # from futures
|
|
160
|
+
"Lock", # from locks
|
|
161
|
+
"Event", # from locks
|
|
162
|
+
"Condition", # from locks
|
|
163
|
+
"Semaphore", # from locks
|
|
164
|
+
"BoundedSemaphore", # from locks
|
|
165
|
+
"Barrier", # from locks
|
|
166
|
+
"BaseProtocol", # from protocols
|
|
167
|
+
"Protocol", # from protocols
|
|
168
|
+
"DatagramProtocol", # from protocols
|
|
169
|
+
"SubprocessProtocol", # from protocols
|
|
170
|
+
"BufferedProtocol", # from protocols
|
|
171
|
+
"Runner", # from runners
|
|
172
|
+
"run", # from runners
|
|
173
|
+
"Queue", # from queues
|
|
174
|
+
"PriorityQueue", # from queues
|
|
175
|
+
"LifoQueue", # from queues
|
|
176
|
+
"QueueFull", # from queues
|
|
177
|
+
"QueueEmpty", # from queues
|
|
178
|
+
"QueueShutDown", # from queues
|
|
179
|
+
"StreamReader", # from streams
|
|
180
|
+
"StreamWriter", # from streams
|
|
181
|
+
"StreamReaderProtocol", # from streams
|
|
182
|
+
"open_connection", # from streams
|
|
183
|
+
"start_server", # from streams
|
|
184
|
+
"create_subprocess_exec", # from subprocess
|
|
185
|
+
"create_subprocess_shell", # from subprocess
|
|
186
|
+
"Task", # from tasks
|
|
187
|
+
"create_task", # from tasks
|
|
188
|
+
"FIRST_COMPLETED", # from tasks
|
|
189
|
+
"FIRST_EXCEPTION", # from tasks
|
|
190
|
+
"ALL_COMPLETED", # from tasks
|
|
191
|
+
"wait", # from tasks
|
|
192
|
+
"wait_for", # from tasks
|
|
193
|
+
"as_completed", # from tasks
|
|
194
|
+
"sleep", # from tasks
|
|
195
|
+
"gather", # from tasks
|
|
196
|
+
"shield", # from tasks
|
|
197
|
+
"ensure_future", # from tasks
|
|
198
|
+
"run_coroutine_threadsafe", # from tasks
|
|
199
|
+
"current_task", # from tasks
|
|
200
|
+
"all_tasks", # from tasks
|
|
201
|
+
"create_eager_task_factory", # from tasks
|
|
202
|
+
"eager_task_factory", # from tasks
|
|
203
|
+
"_register_task", # from tasks
|
|
204
|
+
"_unregister_task", # from tasks
|
|
205
|
+
"_enter_task", # from tasks
|
|
206
|
+
"_leave_task", # from tasks
|
|
207
|
+
"TaskGroup", # from taskgroups
|
|
208
|
+
"to_thread", # from threads
|
|
209
|
+
"Timeout", # from timeouts
|
|
210
|
+
"timeout", # from timeouts
|
|
211
|
+
"timeout_at", # from timeouts
|
|
212
|
+
"BaseTransport", # from transports
|
|
213
|
+
"ReadTransport", # from transports
|
|
214
|
+
"WriteTransport", # from transports
|
|
215
|
+
"Transport", # from transports
|
|
216
|
+
"DatagramTransport", # from transports
|
|
217
|
+
"SubprocessTransport", # from transports
|
|
218
|
+
"SelectorEventLoop", # from windows_events
|
|
219
|
+
"ProactorEventLoop", # from windows_events
|
|
220
|
+
"IocpProactor", # from windows_events
|
|
221
|
+
"DefaultEventLoopPolicy", # from windows_events
|
|
222
|
+
"WindowsSelectorEventLoopPolicy", # from windows_events
|
|
223
|
+
"WindowsProactorEventLoopPolicy", # from windows_events
|
|
224
|
+
"EventLoop", # from windows_events
|
|
225
|
+
)
|
|
226
|
+
elif sys.version_info >= (3, 12):
|
|
227
|
+
__all__ = (
|
|
228
|
+
"BaseEventLoop", # from base_events
|
|
229
|
+
"Server", # from base_events
|
|
230
|
+
"iscoroutinefunction", # from coroutines
|
|
231
|
+
"iscoroutine", # from coroutines
|
|
232
|
+
"AbstractEventLoopPolicy", # from events
|
|
233
|
+
"AbstractEventLoop", # from events
|
|
234
|
+
"AbstractServer", # from events
|
|
235
|
+
"Handle", # from events
|
|
236
|
+
"TimerHandle", # from events
|
|
237
|
+
"get_event_loop_policy", # from events
|
|
238
|
+
"set_event_loop_policy", # from events
|
|
239
|
+
"get_event_loop", # from events
|
|
240
|
+
"set_event_loop", # from events
|
|
241
|
+
"new_event_loop", # from events
|
|
242
|
+
"get_child_watcher", # from events
|
|
243
|
+
"set_child_watcher", # from events
|
|
244
|
+
"_set_running_loop", # from events
|
|
245
|
+
"get_running_loop", # from events
|
|
246
|
+
"_get_running_loop", # from events
|
|
247
|
+
"BrokenBarrierError", # from exceptions
|
|
248
|
+
"CancelledError", # from exceptions
|
|
249
|
+
"InvalidStateError", # from exceptions
|
|
250
|
+
"TimeoutError", # from exceptions
|
|
251
|
+
"IncompleteReadError", # from exceptions
|
|
252
|
+
"LimitOverrunError", # from exceptions
|
|
253
|
+
"SendfileNotAvailableError", # from exceptions
|
|
254
|
+
"Future", # from futures
|
|
255
|
+
"wrap_future", # from futures
|
|
256
|
+
"isfuture", # from futures
|
|
257
|
+
"Lock", # from locks
|
|
258
|
+
"Event", # from locks
|
|
259
|
+
"Condition", # from locks
|
|
260
|
+
"Semaphore", # from locks
|
|
261
|
+
"BoundedSemaphore", # from locks
|
|
262
|
+
"Barrier", # from locks
|
|
263
|
+
"BaseProtocol", # from protocols
|
|
264
|
+
"Protocol", # from protocols
|
|
265
|
+
"DatagramProtocol", # from protocols
|
|
266
|
+
"SubprocessProtocol", # from protocols
|
|
267
|
+
"BufferedProtocol", # from protocols
|
|
268
|
+
"Runner", # from runners
|
|
269
|
+
"run", # from runners
|
|
270
|
+
"Queue", # from queues
|
|
271
|
+
"PriorityQueue", # from queues
|
|
272
|
+
"LifoQueue", # from queues
|
|
273
|
+
"QueueFull", # from queues
|
|
274
|
+
"QueueEmpty", # from queues
|
|
275
|
+
"StreamReader", # from streams
|
|
276
|
+
"StreamWriter", # from streams
|
|
277
|
+
"StreamReaderProtocol", # from streams
|
|
278
|
+
"open_connection", # from streams
|
|
279
|
+
"start_server", # from streams
|
|
280
|
+
"create_subprocess_exec", # from subprocess
|
|
281
|
+
"create_subprocess_shell", # from subprocess
|
|
282
|
+
"Task", # from tasks
|
|
283
|
+
"create_task", # from tasks
|
|
284
|
+
"FIRST_COMPLETED", # from tasks
|
|
285
|
+
"FIRST_EXCEPTION", # from tasks
|
|
286
|
+
"ALL_COMPLETED", # from tasks
|
|
287
|
+
"wait", # from tasks
|
|
288
|
+
"wait_for", # from tasks
|
|
289
|
+
"as_completed", # from tasks
|
|
290
|
+
"sleep", # from tasks
|
|
291
|
+
"gather", # from tasks
|
|
292
|
+
"shield", # from tasks
|
|
293
|
+
"ensure_future", # from tasks
|
|
294
|
+
"run_coroutine_threadsafe", # from tasks
|
|
295
|
+
"current_task", # from tasks
|
|
296
|
+
"all_tasks", # from tasks
|
|
297
|
+
"create_eager_task_factory", # from tasks
|
|
298
|
+
"eager_task_factory", # from tasks
|
|
299
|
+
"_register_task", # from tasks
|
|
300
|
+
"_unregister_task", # from tasks
|
|
301
|
+
"_enter_task", # from tasks
|
|
302
|
+
"_leave_task", # from tasks
|
|
303
|
+
"TaskGroup", # from taskgroups
|
|
304
|
+
"to_thread", # from threads
|
|
305
|
+
"Timeout", # from timeouts
|
|
306
|
+
"timeout", # from timeouts
|
|
307
|
+
"timeout_at", # from timeouts
|
|
308
|
+
"BaseTransport", # from transports
|
|
309
|
+
"ReadTransport", # from transports
|
|
310
|
+
"WriteTransport", # from transports
|
|
311
|
+
"Transport", # from transports
|
|
312
|
+
"DatagramTransport", # from transports
|
|
313
|
+
"SubprocessTransport", # from transports
|
|
314
|
+
"SelectorEventLoop", # from windows_events
|
|
315
|
+
"ProactorEventLoop", # from windows_events
|
|
316
|
+
"IocpProactor", # from windows_events
|
|
317
|
+
"DefaultEventLoopPolicy", # from windows_events
|
|
318
|
+
"WindowsSelectorEventLoopPolicy", # from windows_events
|
|
319
|
+
"WindowsProactorEventLoopPolicy", # from windows_events
|
|
320
|
+
)
|
|
321
|
+
elif sys.version_info >= (3, 11):
|
|
322
|
+
__all__ = (
|
|
323
|
+
"BaseEventLoop", # from base_events
|
|
324
|
+
"Server", # from base_events
|
|
325
|
+
"iscoroutinefunction", # from coroutines
|
|
326
|
+
"iscoroutine", # from coroutines
|
|
327
|
+
"AbstractEventLoopPolicy", # from events
|
|
328
|
+
"AbstractEventLoop", # from events
|
|
329
|
+
"AbstractServer", # from events
|
|
330
|
+
"Handle", # from events
|
|
331
|
+
"TimerHandle", # from events
|
|
332
|
+
"get_event_loop_policy", # from events
|
|
333
|
+
"set_event_loop_policy", # from events
|
|
334
|
+
"get_event_loop", # from events
|
|
335
|
+
"set_event_loop", # from events
|
|
336
|
+
"new_event_loop", # from events
|
|
337
|
+
"get_child_watcher", # from events
|
|
338
|
+
"set_child_watcher", # from events
|
|
339
|
+
"_set_running_loop", # from events
|
|
340
|
+
"get_running_loop", # from events
|
|
341
|
+
"_get_running_loop", # from events
|
|
342
|
+
"BrokenBarrierError", # from exceptions
|
|
343
|
+
"CancelledError", # from exceptions
|
|
344
|
+
"InvalidStateError", # from exceptions
|
|
345
|
+
"TimeoutError", # from exceptions
|
|
346
|
+
"IncompleteReadError", # from exceptions
|
|
347
|
+
"LimitOverrunError", # from exceptions
|
|
348
|
+
"SendfileNotAvailableError", # from exceptions
|
|
349
|
+
"Future", # from futures
|
|
350
|
+
"wrap_future", # from futures
|
|
351
|
+
"isfuture", # from futures
|
|
352
|
+
"Lock", # from locks
|
|
353
|
+
"Event", # from locks
|
|
354
|
+
"Condition", # from locks
|
|
355
|
+
"Semaphore", # from locks
|
|
356
|
+
"BoundedSemaphore", # from locks
|
|
357
|
+
"Barrier", # from locks
|
|
358
|
+
"BaseProtocol", # from protocols
|
|
359
|
+
"Protocol", # from protocols
|
|
360
|
+
"DatagramProtocol", # from protocols
|
|
361
|
+
"SubprocessProtocol", # from protocols
|
|
362
|
+
"BufferedProtocol", # from protocols
|
|
363
|
+
"Runner", # from runners
|
|
364
|
+
"run", # from runners
|
|
365
|
+
"Queue", # from queues
|
|
366
|
+
"PriorityQueue", # from queues
|
|
367
|
+
"LifoQueue", # from queues
|
|
368
|
+
"QueueFull", # from queues
|
|
369
|
+
"QueueEmpty", # from queues
|
|
370
|
+
"StreamReader", # from streams
|
|
371
|
+
"StreamWriter", # from streams
|
|
372
|
+
"StreamReaderProtocol", # from streams
|
|
373
|
+
"open_connection", # from streams
|
|
374
|
+
"start_server", # from streams
|
|
375
|
+
"create_subprocess_exec", # from subprocess
|
|
376
|
+
"create_subprocess_shell", # from subprocess
|
|
377
|
+
"Task", # from tasks
|
|
378
|
+
"create_task", # from tasks
|
|
379
|
+
"FIRST_COMPLETED", # from tasks
|
|
380
|
+
"FIRST_EXCEPTION", # from tasks
|
|
381
|
+
"ALL_COMPLETED", # from tasks
|
|
382
|
+
"wait", # from tasks
|
|
383
|
+
"wait_for", # from tasks
|
|
384
|
+
"as_completed", # from tasks
|
|
385
|
+
"sleep", # from tasks
|
|
386
|
+
"gather", # from tasks
|
|
387
|
+
"shield", # from tasks
|
|
388
|
+
"ensure_future", # from tasks
|
|
389
|
+
"run_coroutine_threadsafe", # from tasks
|
|
390
|
+
"current_task", # from tasks
|
|
391
|
+
"all_tasks", # from tasks
|
|
392
|
+
"_register_task", # from tasks
|
|
393
|
+
"_unregister_task", # from tasks
|
|
394
|
+
"_enter_task", # from tasks
|
|
395
|
+
"_leave_task", # from tasks
|
|
396
|
+
"to_thread", # from threads
|
|
397
|
+
"Timeout", # from timeouts
|
|
398
|
+
"timeout", # from timeouts
|
|
399
|
+
"timeout_at", # from timeouts
|
|
400
|
+
"BaseTransport", # from transports
|
|
401
|
+
"ReadTransport", # from transports
|
|
402
|
+
"WriteTransport", # from transports
|
|
403
|
+
"Transport", # from transports
|
|
404
|
+
"DatagramTransport", # from transports
|
|
405
|
+
"SubprocessTransport", # from transports
|
|
406
|
+
"SelectorEventLoop", # from windows_events
|
|
407
|
+
"ProactorEventLoop", # from windows_events
|
|
408
|
+
"IocpProactor", # from windows_events
|
|
409
|
+
"DefaultEventLoopPolicy", # from windows_events
|
|
410
|
+
"WindowsSelectorEventLoopPolicy", # from windows_events
|
|
411
|
+
"WindowsProactorEventLoopPolicy", # from windows_events
|
|
412
|
+
)
|
|
413
|
+
elif sys.version_info >= (3, 10):
|
|
414
|
+
__all__ = (
|
|
415
|
+
"BaseEventLoop", # from base_events
|
|
416
|
+
"Server", # from base_events
|
|
417
|
+
"coroutine", # from coroutines
|
|
418
|
+
"iscoroutinefunction", # from coroutines
|
|
419
|
+
"iscoroutine", # from coroutines
|
|
420
|
+
"AbstractEventLoopPolicy", # from events
|
|
421
|
+
"AbstractEventLoop", # from events
|
|
422
|
+
"AbstractServer", # from events
|
|
423
|
+
"Handle", # from events
|
|
424
|
+
"TimerHandle", # from events
|
|
425
|
+
"get_event_loop_policy", # from events
|
|
426
|
+
"set_event_loop_policy", # from events
|
|
427
|
+
"get_event_loop", # from events
|
|
428
|
+
"set_event_loop", # from events
|
|
429
|
+
"new_event_loop", # from events
|
|
430
|
+
"get_child_watcher", # from events
|
|
431
|
+
"set_child_watcher", # from events
|
|
432
|
+
"_set_running_loop", # from events
|
|
433
|
+
"get_running_loop", # from events
|
|
434
|
+
"_get_running_loop", # from events
|
|
435
|
+
"CancelledError", # from exceptions
|
|
436
|
+
"InvalidStateError", # from exceptions
|
|
437
|
+
"TimeoutError", # from exceptions
|
|
438
|
+
"IncompleteReadError", # from exceptions
|
|
439
|
+
"LimitOverrunError", # from exceptions
|
|
440
|
+
"SendfileNotAvailableError", # from exceptions
|
|
441
|
+
"Future", # from futures
|
|
442
|
+
"wrap_future", # from futures
|
|
443
|
+
"isfuture", # from futures
|
|
444
|
+
"Lock", # from locks
|
|
445
|
+
"Event", # from locks
|
|
446
|
+
"Condition", # from locks
|
|
447
|
+
"Semaphore", # from locks
|
|
448
|
+
"BoundedSemaphore", # from locks
|
|
449
|
+
"BaseProtocol", # from protocols
|
|
450
|
+
"Protocol", # from protocols
|
|
451
|
+
"DatagramProtocol", # from protocols
|
|
452
|
+
"SubprocessProtocol", # from protocols
|
|
453
|
+
"BufferedProtocol", # from protocols
|
|
454
|
+
"run", # from runners
|
|
455
|
+
"Queue", # from queues
|
|
456
|
+
"PriorityQueue", # from queues
|
|
457
|
+
"LifoQueue", # from queues
|
|
458
|
+
"QueueFull", # from queues
|
|
459
|
+
"QueueEmpty", # from queues
|
|
460
|
+
"StreamReader", # from streams
|
|
461
|
+
"StreamWriter", # from streams
|
|
462
|
+
"StreamReaderProtocol", # from streams
|
|
463
|
+
"open_connection", # from streams
|
|
464
|
+
"start_server", # from streams
|
|
465
|
+
"create_subprocess_exec", # from subprocess
|
|
466
|
+
"create_subprocess_shell", # from subprocess
|
|
467
|
+
"Task", # from tasks
|
|
468
|
+
"create_task", # from tasks
|
|
469
|
+
"FIRST_COMPLETED", # from tasks
|
|
470
|
+
"FIRST_EXCEPTION", # from tasks
|
|
471
|
+
"ALL_COMPLETED", # from tasks
|
|
472
|
+
"wait", # from tasks
|
|
473
|
+
"wait_for", # from tasks
|
|
474
|
+
"as_completed", # from tasks
|
|
475
|
+
"sleep", # from tasks
|
|
476
|
+
"gather", # from tasks
|
|
477
|
+
"shield", # from tasks
|
|
478
|
+
"ensure_future", # from tasks
|
|
479
|
+
"run_coroutine_threadsafe", # from tasks
|
|
480
|
+
"current_task", # from tasks
|
|
481
|
+
"all_tasks", # from tasks
|
|
482
|
+
"_register_task", # from tasks
|
|
483
|
+
"_unregister_task", # from tasks
|
|
484
|
+
"_enter_task", # from tasks
|
|
485
|
+
"_leave_task", # from tasks
|
|
486
|
+
"to_thread", # from threads
|
|
487
|
+
"BaseTransport", # from transports
|
|
488
|
+
"ReadTransport", # from transports
|
|
489
|
+
"WriteTransport", # from transports
|
|
490
|
+
"Transport", # from transports
|
|
491
|
+
"DatagramTransport", # from transports
|
|
492
|
+
"SubprocessTransport", # from transports
|
|
493
|
+
"SelectorEventLoop", # from windows_events
|
|
494
|
+
"ProactorEventLoop", # from windows_events
|
|
495
|
+
"IocpProactor", # from windows_events
|
|
496
|
+
"DefaultEventLoopPolicy", # from windows_events
|
|
497
|
+
"WindowsSelectorEventLoopPolicy", # from windows_events
|
|
498
|
+
"WindowsProactorEventLoopPolicy", # from windows_events
|
|
499
|
+
)
|
|
500
|
+
elif sys.version_info >= (3, 9):
|
|
501
|
+
__all__ = (
|
|
502
|
+
"BaseEventLoop", # from base_events
|
|
503
|
+
"Server", # from base_events
|
|
504
|
+
"coroutine", # from coroutines
|
|
505
|
+
"iscoroutinefunction", # from coroutines
|
|
506
|
+
"iscoroutine", # from coroutines
|
|
507
|
+
"AbstractEventLoopPolicy", # from events
|
|
508
|
+
"AbstractEventLoop", # from events
|
|
509
|
+
"AbstractServer", # from events
|
|
510
|
+
"Handle", # from events
|
|
511
|
+
"TimerHandle", # from events
|
|
512
|
+
"get_event_loop_policy", # from events
|
|
513
|
+
"set_event_loop_policy", # from events
|
|
514
|
+
"get_event_loop", # from events
|
|
515
|
+
"set_event_loop", # from events
|
|
516
|
+
"new_event_loop", # from events
|
|
517
|
+
"get_child_watcher", # from events
|
|
518
|
+
"set_child_watcher", # from events
|
|
519
|
+
"_set_running_loop", # from events
|
|
520
|
+
"get_running_loop", # from events
|
|
521
|
+
"_get_running_loop", # from events
|
|
522
|
+
"CancelledError", # from exceptions
|
|
523
|
+
"InvalidStateError", # from exceptions
|
|
524
|
+
"TimeoutError", # from exceptions
|
|
525
|
+
"IncompleteReadError", # from exceptions
|
|
526
|
+
"LimitOverrunError", # from exceptions
|
|
527
|
+
"SendfileNotAvailableError", # from exceptions
|
|
528
|
+
"Future", # from futures
|
|
529
|
+
"wrap_future", # from futures
|
|
530
|
+
"isfuture", # from futures
|
|
531
|
+
"Lock", # from locks
|
|
532
|
+
"Event", # from locks
|
|
533
|
+
"Condition", # from locks
|
|
534
|
+
"Semaphore", # from locks
|
|
535
|
+
"BoundedSemaphore", # from locks
|
|
536
|
+
"BaseProtocol", # from protocols
|
|
537
|
+
"Protocol", # from protocols
|
|
538
|
+
"DatagramProtocol", # from protocols
|
|
539
|
+
"SubprocessProtocol", # from protocols
|
|
540
|
+
"BufferedProtocol", # from protocols
|
|
541
|
+
"run", # from runners
|
|
542
|
+
"Queue", # from queues
|
|
543
|
+
"PriorityQueue", # from queues
|
|
544
|
+
"LifoQueue", # from queues
|
|
545
|
+
"QueueFull", # from queues
|
|
546
|
+
"QueueEmpty", # from queues
|
|
547
|
+
"StreamReader", # from streams
|
|
548
|
+
"StreamWriter", # from streams
|
|
549
|
+
"StreamReaderProtocol", # from streams
|
|
550
|
+
"open_connection", # from streams
|
|
551
|
+
"start_server", # from streams
|
|
552
|
+
"create_subprocess_exec", # from subprocess
|
|
553
|
+
"create_subprocess_shell", # from subprocess
|
|
554
|
+
"Task", # from tasks
|
|
555
|
+
"create_task", # from tasks
|
|
556
|
+
"FIRST_COMPLETED", # from tasks
|
|
557
|
+
"FIRST_EXCEPTION", # from tasks
|
|
558
|
+
"ALL_COMPLETED", # from tasks
|
|
559
|
+
"wait", # from tasks
|
|
560
|
+
"wait_for", # from tasks
|
|
561
|
+
"as_completed", # from tasks
|
|
562
|
+
"sleep", # from tasks
|
|
563
|
+
"gather", # from tasks
|
|
564
|
+
"shield", # from tasks
|
|
565
|
+
"ensure_future", # from tasks
|
|
566
|
+
"run_coroutine_threadsafe", # from tasks
|
|
567
|
+
"current_task", # from tasks
|
|
568
|
+
"all_tasks", # from tasks
|
|
569
|
+
"_register_task", # from tasks
|
|
570
|
+
"_unregister_task", # from tasks
|
|
571
|
+
"_enter_task", # from tasks
|
|
572
|
+
"_leave_task", # from tasks
|
|
573
|
+
"to_thread", # from threads
|
|
574
|
+
"BaseTransport", # from transports
|
|
575
|
+
"ReadTransport", # from transports
|
|
576
|
+
"WriteTransport", # from transports
|
|
577
|
+
"Transport", # from transports
|
|
578
|
+
"DatagramTransport", # from transports
|
|
579
|
+
"SubprocessTransport", # from transports
|
|
580
|
+
"SelectorEventLoop", # from windows_events
|
|
581
|
+
"ProactorEventLoop", # from windows_events
|
|
582
|
+
"IocpProactor", # from windows_events
|
|
583
|
+
"DefaultEventLoopPolicy", # from windows_events
|
|
584
|
+
"WindowsSelectorEventLoopPolicy", # from windows_events
|
|
585
|
+
"WindowsProactorEventLoopPolicy", # from windows_events
|
|
586
|
+
)
|
|
587
|
+
else:
|
|
588
|
+
__all__ = (
|
|
589
|
+
"BaseEventLoop", # from base_events
|
|
590
|
+
"coroutine", # from coroutines
|
|
591
|
+
"iscoroutinefunction", # from coroutines
|
|
592
|
+
"iscoroutine", # from coroutines
|
|
593
|
+
"AbstractEventLoopPolicy", # from events
|
|
594
|
+
"AbstractEventLoop", # from events
|
|
595
|
+
"AbstractServer", # from events
|
|
596
|
+
"Handle", # from events
|
|
597
|
+
"TimerHandle", # from events
|
|
598
|
+
"get_event_loop_policy", # from events
|
|
599
|
+
"set_event_loop_policy", # from events
|
|
600
|
+
"get_event_loop", # from events
|
|
601
|
+
"set_event_loop", # from events
|
|
602
|
+
"new_event_loop", # from events
|
|
603
|
+
"get_child_watcher", # from events
|
|
604
|
+
"set_child_watcher", # from events
|
|
605
|
+
"_set_running_loop", # from events
|
|
606
|
+
"get_running_loop", # from events
|
|
607
|
+
"_get_running_loop", # from events
|
|
608
|
+
"CancelledError", # from exceptions
|
|
609
|
+
"InvalidStateError", # from exceptions
|
|
610
|
+
"TimeoutError", # from exceptions
|
|
611
|
+
"IncompleteReadError", # from exceptions
|
|
612
|
+
"LimitOverrunError", # from exceptions
|
|
613
|
+
"SendfileNotAvailableError", # from exceptions
|
|
614
|
+
"Future", # from futures
|
|
615
|
+
"wrap_future", # from futures
|
|
616
|
+
"isfuture", # from futures
|
|
617
|
+
"Lock", # from locks
|
|
618
|
+
"Event", # from locks
|
|
619
|
+
"Condition", # from locks
|
|
620
|
+
"Semaphore", # from locks
|
|
621
|
+
"BoundedSemaphore", # from locks
|
|
622
|
+
"BaseProtocol", # from protocols
|
|
623
|
+
"Protocol", # from protocols
|
|
624
|
+
"DatagramProtocol", # from protocols
|
|
625
|
+
"SubprocessProtocol", # from protocols
|
|
626
|
+
"BufferedProtocol", # from protocols
|
|
627
|
+
"run", # from runners
|
|
628
|
+
"Queue", # from queues
|
|
629
|
+
"PriorityQueue", # from queues
|
|
630
|
+
"LifoQueue", # from queues
|
|
631
|
+
"QueueFull", # from queues
|
|
632
|
+
"QueueEmpty", # from queues
|
|
633
|
+
"StreamReader", # from streams
|
|
634
|
+
"StreamWriter", # from streams
|
|
635
|
+
"StreamReaderProtocol", # from streams
|
|
636
|
+
"open_connection", # from streams
|
|
637
|
+
"start_server", # from streams
|
|
638
|
+
"create_subprocess_exec", # from subprocess
|
|
639
|
+
"create_subprocess_shell", # from subprocess
|
|
640
|
+
"Task", # from tasks
|
|
641
|
+
"create_task", # from tasks
|
|
642
|
+
"FIRST_COMPLETED", # from tasks
|
|
643
|
+
"FIRST_EXCEPTION", # from tasks
|
|
644
|
+
"ALL_COMPLETED", # from tasks
|
|
645
|
+
"wait", # from tasks
|
|
646
|
+
"wait_for", # from tasks
|
|
647
|
+
"as_completed", # from tasks
|
|
648
|
+
"sleep", # from tasks
|
|
649
|
+
"gather", # from tasks
|
|
650
|
+
"shield", # from tasks
|
|
651
|
+
"ensure_future", # from tasks
|
|
652
|
+
"run_coroutine_threadsafe", # from tasks
|
|
653
|
+
"current_task", # from tasks
|
|
654
|
+
"all_tasks", # from tasks
|
|
655
|
+
"_register_task", # from tasks
|
|
656
|
+
"_unregister_task", # from tasks
|
|
657
|
+
"_enter_task", # from tasks
|
|
658
|
+
"_leave_task", # from tasks
|
|
659
|
+
"BaseTransport", # from transports
|
|
660
|
+
"ReadTransport", # from transports
|
|
661
|
+
"WriteTransport", # from transports
|
|
662
|
+
"Transport", # from transports
|
|
663
|
+
"DatagramTransport", # from transports
|
|
664
|
+
"SubprocessTransport", # from transports
|
|
665
|
+
"SelectorEventLoop", # from windows_events
|
|
666
|
+
"ProactorEventLoop", # from windows_events
|
|
667
|
+
"IocpProactor", # from windows_events
|
|
668
|
+
"DefaultEventLoopPolicy", # from windows_events
|
|
669
|
+
"WindowsSelectorEventLoopPolicy", # from windows_events
|
|
670
|
+
"WindowsProactorEventLoopPolicy", # from windows_events
|
|
671
|
+
)
|
|
672
|
+
else:
|
|
673
|
+
if sys.version_info >= (3, 14):
|
|
674
|
+
__all__ = (
|
|
675
|
+
"BaseEventLoop", # from base_events
|
|
676
|
+
"Server", # from base_events
|
|
677
|
+
"iscoroutinefunction", # from coroutines
|
|
678
|
+
"iscoroutine", # from coroutines
|
|
679
|
+
"AbstractEventLoopPolicy", # from events
|
|
680
|
+
"AbstractEventLoop", # from events
|
|
681
|
+
"AbstractServer", # from events
|
|
682
|
+
"Handle", # from events
|
|
683
|
+
"TimerHandle", # from events
|
|
684
|
+
"get_event_loop_policy", # from events
|
|
685
|
+
"set_event_loop_policy", # from events
|
|
686
|
+
"get_event_loop", # from events
|
|
687
|
+
"set_event_loop", # from events
|
|
688
|
+
"new_event_loop", # from events
|
|
689
|
+
"_set_running_loop", # from events
|
|
690
|
+
"get_running_loop", # from events
|
|
691
|
+
"_get_running_loop", # from events
|
|
692
|
+
"BrokenBarrierError", # from exceptions
|
|
693
|
+
"CancelledError", # from exceptions
|
|
694
|
+
"InvalidStateError", # from exceptions
|
|
695
|
+
"TimeoutError", # from exceptions
|
|
696
|
+
"IncompleteReadError", # from exceptions
|
|
697
|
+
"LimitOverrunError", # from exceptions
|
|
698
|
+
"SendfileNotAvailableError", # from exceptions
|
|
699
|
+
"Future", # from futures
|
|
700
|
+
"wrap_future", # from futures
|
|
701
|
+
"isfuture", # from futures
|
|
702
|
+
"Lock", # from locks
|
|
703
|
+
"Event", # from locks
|
|
704
|
+
"Condition", # from locks
|
|
705
|
+
"Semaphore", # from locks
|
|
706
|
+
"BoundedSemaphore", # from locks
|
|
707
|
+
"Barrier", # from locks
|
|
708
|
+
"BaseProtocol", # from protocols
|
|
709
|
+
"Protocol", # from protocols
|
|
710
|
+
"DatagramProtocol", # from protocols
|
|
711
|
+
"SubprocessProtocol", # from protocols
|
|
712
|
+
"BufferedProtocol", # from protocols
|
|
713
|
+
"Runner", # from runners
|
|
714
|
+
"run", # from runners
|
|
715
|
+
"Queue", # from queues
|
|
716
|
+
"PriorityQueue", # from queues
|
|
717
|
+
"LifoQueue", # from queues
|
|
718
|
+
"QueueFull", # from queues
|
|
719
|
+
"QueueEmpty", # from queues
|
|
720
|
+
"QueueShutDown", # from queues
|
|
721
|
+
"StreamReader", # from streams
|
|
722
|
+
"StreamWriter", # from streams
|
|
723
|
+
"StreamReaderProtocol", # from streams
|
|
724
|
+
"open_connection", # from streams
|
|
725
|
+
"start_server", # from streams
|
|
726
|
+
"open_unix_connection", # from streams
|
|
727
|
+
"start_unix_server", # from streams
|
|
728
|
+
"create_subprocess_exec", # from subprocess
|
|
729
|
+
"create_subprocess_shell", # from subprocess
|
|
730
|
+
"Task", # from tasks
|
|
731
|
+
"create_task", # from tasks
|
|
732
|
+
"FIRST_COMPLETED", # from tasks
|
|
733
|
+
"FIRST_EXCEPTION", # from tasks
|
|
734
|
+
"ALL_COMPLETED", # from tasks
|
|
735
|
+
"wait", # from tasks
|
|
736
|
+
"wait_for", # from tasks
|
|
737
|
+
"as_completed", # from tasks
|
|
738
|
+
"sleep", # from tasks
|
|
739
|
+
"gather", # from tasks
|
|
740
|
+
"shield", # from tasks
|
|
741
|
+
"ensure_future", # from tasks
|
|
742
|
+
"run_coroutine_threadsafe", # from tasks
|
|
743
|
+
"current_task", # from tasks
|
|
744
|
+
"all_tasks", # from tasks
|
|
745
|
+
"create_eager_task_factory", # from tasks
|
|
746
|
+
"eager_task_factory", # from tasks
|
|
747
|
+
"_register_task", # from tasks
|
|
748
|
+
"_unregister_task", # from tasks
|
|
749
|
+
"_enter_task", # from tasks
|
|
750
|
+
"_leave_task", # from tasks
|
|
751
|
+
"TaskGroup", # from taskgroups
|
|
752
|
+
"to_thread", # from threads
|
|
753
|
+
"Timeout", # from timeouts
|
|
754
|
+
"timeout", # from timeouts
|
|
755
|
+
"timeout_at", # from timeouts
|
|
756
|
+
"BaseTransport", # from transports
|
|
757
|
+
"ReadTransport", # from transports
|
|
758
|
+
"WriteTransport", # from transports
|
|
759
|
+
"Transport", # from transports
|
|
760
|
+
"DatagramTransport", # from transports
|
|
761
|
+
"SubprocessTransport", # from transports
|
|
762
|
+
"SelectorEventLoop", # from unix_events
|
|
763
|
+
"DefaultEventLoopPolicy", # from unix_events
|
|
764
|
+
"EventLoop", # from unix_events
|
|
765
|
+
)
|
|
766
|
+
elif sys.version_info >= (3, 13):
|
|
767
|
+
__all__ = (
|
|
768
|
+
"BaseEventLoop", # from base_events
|
|
769
|
+
"Server", # from base_events
|
|
770
|
+
"iscoroutinefunction", # from coroutines
|
|
771
|
+
"iscoroutine", # from coroutines
|
|
772
|
+
"AbstractEventLoopPolicy", # from events
|
|
773
|
+
"AbstractEventLoop", # from events
|
|
774
|
+
"AbstractServer", # from events
|
|
775
|
+
"Handle", # from events
|
|
776
|
+
"TimerHandle", # from events
|
|
777
|
+
"get_event_loop_policy", # from events
|
|
778
|
+
"set_event_loop_policy", # from events
|
|
779
|
+
"get_event_loop", # from events
|
|
780
|
+
"set_event_loop", # from events
|
|
781
|
+
"new_event_loop", # from events
|
|
782
|
+
"get_child_watcher", # from events
|
|
783
|
+
"set_child_watcher", # from events
|
|
784
|
+
"_set_running_loop", # from events
|
|
785
|
+
"get_running_loop", # from events
|
|
786
|
+
"_get_running_loop", # from events
|
|
787
|
+
"BrokenBarrierError", # from exceptions
|
|
788
|
+
"CancelledError", # from exceptions
|
|
789
|
+
"InvalidStateError", # from exceptions
|
|
790
|
+
"TimeoutError", # from exceptions
|
|
791
|
+
"IncompleteReadError", # from exceptions
|
|
792
|
+
"LimitOverrunError", # from exceptions
|
|
793
|
+
"SendfileNotAvailableError", # from exceptions
|
|
794
|
+
"Future", # from futures
|
|
795
|
+
"wrap_future", # from futures
|
|
796
|
+
"isfuture", # from futures
|
|
797
|
+
"Lock", # from locks
|
|
798
|
+
"Event", # from locks
|
|
799
|
+
"Condition", # from locks
|
|
800
|
+
"Semaphore", # from locks
|
|
801
|
+
"BoundedSemaphore", # from locks
|
|
802
|
+
"Barrier", # from locks
|
|
803
|
+
"BaseProtocol", # from protocols
|
|
804
|
+
"Protocol", # from protocols
|
|
805
|
+
"DatagramProtocol", # from protocols
|
|
806
|
+
"SubprocessProtocol", # from protocols
|
|
807
|
+
"BufferedProtocol", # from protocols
|
|
808
|
+
"Runner", # from runners
|
|
809
|
+
"run", # from runners
|
|
810
|
+
"Queue", # from queues
|
|
811
|
+
"PriorityQueue", # from queues
|
|
812
|
+
"LifoQueue", # from queues
|
|
813
|
+
"QueueFull", # from queues
|
|
814
|
+
"QueueEmpty", # from queues
|
|
815
|
+
"QueueShutDown", # from queues
|
|
816
|
+
"StreamReader", # from streams
|
|
817
|
+
"StreamWriter", # from streams
|
|
818
|
+
"StreamReaderProtocol", # from streams
|
|
819
|
+
"open_connection", # from streams
|
|
820
|
+
"start_server", # from streams
|
|
821
|
+
"open_unix_connection", # from streams
|
|
822
|
+
"start_unix_server", # from streams
|
|
823
|
+
"create_subprocess_exec", # from subprocess
|
|
824
|
+
"create_subprocess_shell", # from subprocess
|
|
825
|
+
"Task", # from tasks
|
|
826
|
+
"create_task", # from tasks
|
|
827
|
+
"FIRST_COMPLETED", # from tasks
|
|
828
|
+
"FIRST_EXCEPTION", # from tasks
|
|
829
|
+
"ALL_COMPLETED", # from tasks
|
|
830
|
+
"wait", # from tasks
|
|
831
|
+
"wait_for", # from tasks
|
|
832
|
+
"as_completed", # from tasks
|
|
833
|
+
"sleep", # from tasks
|
|
834
|
+
"gather", # from tasks
|
|
835
|
+
"shield", # from tasks
|
|
836
|
+
"ensure_future", # from tasks
|
|
837
|
+
"run_coroutine_threadsafe", # from tasks
|
|
838
|
+
"current_task", # from tasks
|
|
839
|
+
"all_tasks", # from tasks
|
|
840
|
+
"create_eager_task_factory", # from tasks
|
|
841
|
+
"eager_task_factory", # from tasks
|
|
842
|
+
"_register_task", # from tasks
|
|
843
|
+
"_unregister_task", # from tasks
|
|
844
|
+
"_enter_task", # from tasks
|
|
845
|
+
"_leave_task", # from tasks
|
|
846
|
+
"TaskGroup", # from taskgroups
|
|
847
|
+
"to_thread", # from threads
|
|
848
|
+
"Timeout", # from timeouts
|
|
849
|
+
"timeout", # from timeouts
|
|
850
|
+
"timeout_at", # from timeouts
|
|
851
|
+
"BaseTransport", # from transports
|
|
852
|
+
"ReadTransport", # from transports
|
|
853
|
+
"WriteTransport", # from transports
|
|
854
|
+
"Transport", # from transports
|
|
855
|
+
"DatagramTransport", # from transports
|
|
856
|
+
"SubprocessTransport", # from transports
|
|
857
|
+
"SelectorEventLoop", # from unix_events
|
|
858
|
+
"AbstractChildWatcher", # from unix_events
|
|
859
|
+
"SafeChildWatcher", # from unix_events
|
|
860
|
+
"FastChildWatcher", # from unix_events
|
|
861
|
+
"PidfdChildWatcher", # from unix_events
|
|
862
|
+
"MultiLoopChildWatcher", # from unix_events
|
|
863
|
+
"ThreadedChildWatcher", # from unix_events
|
|
864
|
+
"DefaultEventLoopPolicy", # from unix_events
|
|
865
|
+
"EventLoop", # from unix_events
|
|
866
|
+
)
|
|
867
|
+
elif sys.version_info >= (3, 12):
|
|
868
|
+
__all__ = (
|
|
869
|
+
"BaseEventLoop", # from base_events
|
|
870
|
+
"Server", # from base_events
|
|
871
|
+
"iscoroutinefunction", # from coroutines
|
|
872
|
+
"iscoroutine", # from coroutines
|
|
873
|
+
"AbstractEventLoopPolicy", # from events
|
|
874
|
+
"AbstractEventLoop", # from events
|
|
875
|
+
"AbstractServer", # from events
|
|
876
|
+
"Handle", # from events
|
|
877
|
+
"TimerHandle", # from events
|
|
878
|
+
"get_event_loop_policy", # from events
|
|
879
|
+
"set_event_loop_policy", # from events
|
|
880
|
+
"get_event_loop", # from events
|
|
881
|
+
"set_event_loop", # from events
|
|
882
|
+
"new_event_loop", # from events
|
|
883
|
+
"get_child_watcher", # from events
|
|
884
|
+
"set_child_watcher", # from events
|
|
885
|
+
"_set_running_loop", # from events
|
|
886
|
+
"get_running_loop", # from events
|
|
887
|
+
"_get_running_loop", # from events
|
|
888
|
+
"BrokenBarrierError", # from exceptions
|
|
889
|
+
"CancelledError", # from exceptions
|
|
890
|
+
"InvalidStateError", # from exceptions
|
|
891
|
+
"TimeoutError", # from exceptions
|
|
892
|
+
"IncompleteReadError", # from exceptions
|
|
893
|
+
"LimitOverrunError", # from exceptions
|
|
894
|
+
"SendfileNotAvailableError", # from exceptions
|
|
895
|
+
"Future", # from futures
|
|
896
|
+
"wrap_future", # from futures
|
|
897
|
+
"isfuture", # from futures
|
|
898
|
+
"Lock", # from locks
|
|
899
|
+
"Event", # from locks
|
|
900
|
+
"Condition", # from locks
|
|
901
|
+
"Semaphore", # from locks
|
|
902
|
+
"BoundedSemaphore", # from locks
|
|
903
|
+
"Barrier", # from locks
|
|
904
|
+
"BaseProtocol", # from protocols
|
|
905
|
+
"Protocol", # from protocols
|
|
906
|
+
"DatagramProtocol", # from protocols
|
|
907
|
+
"SubprocessProtocol", # from protocols
|
|
908
|
+
"BufferedProtocol", # from protocols
|
|
909
|
+
"Runner", # from runners
|
|
910
|
+
"run", # from runners
|
|
911
|
+
"Queue", # from queues
|
|
912
|
+
"PriorityQueue", # from queues
|
|
913
|
+
"LifoQueue", # from queues
|
|
914
|
+
"QueueFull", # from queues
|
|
915
|
+
"QueueEmpty", # from queues
|
|
916
|
+
"StreamReader", # from streams
|
|
917
|
+
"StreamWriter", # from streams
|
|
918
|
+
"StreamReaderProtocol", # from streams
|
|
919
|
+
"open_connection", # from streams
|
|
920
|
+
"start_server", # from streams
|
|
921
|
+
"open_unix_connection", # from streams
|
|
922
|
+
"start_unix_server", # from streams
|
|
923
|
+
"create_subprocess_exec", # from subprocess
|
|
924
|
+
"create_subprocess_shell", # from subprocess
|
|
925
|
+
"Task", # from tasks
|
|
926
|
+
"create_task", # from tasks
|
|
927
|
+
"FIRST_COMPLETED", # from tasks
|
|
928
|
+
"FIRST_EXCEPTION", # from tasks
|
|
929
|
+
"ALL_COMPLETED", # from tasks
|
|
930
|
+
"wait", # from tasks
|
|
931
|
+
"wait_for", # from tasks
|
|
932
|
+
"as_completed", # from tasks
|
|
933
|
+
"sleep", # from tasks
|
|
934
|
+
"gather", # from tasks
|
|
935
|
+
"shield", # from tasks
|
|
936
|
+
"ensure_future", # from tasks
|
|
937
|
+
"run_coroutine_threadsafe", # from tasks
|
|
938
|
+
"current_task", # from tasks
|
|
939
|
+
"all_tasks", # from tasks
|
|
940
|
+
"create_eager_task_factory", # from tasks
|
|
941
|
+
"eager_task_factory", # from tasks
|
|
942
|
+
"_register_task", # from tasks
|
|
943
|
+
"_unregister_task", # from tasks
|
|
944
|
+
"_enter_task", # from tasks
|
|
945
|
+
"_leave_task", # from tasks
|
|
946
|
+
"TaskGroup", # from taskgroups
|
|
947
|
+
"to_thread", # from threads
|
|
948
|
+
"Timeout", # from timeouts
|
|
949
|
+
"timeout", # from timeouts
|
|
950
|
+
"timeout_at", # from timeouts
|
|
951
|
+
"BaseTransport", # from transports
|
|
952
|
+
"ReadTransport", # from transports
|
|
953
|
+
"WriteTransport", # from transports
|
|
954
|
+
"Transport", # from transports
|
|
955
|
+
"DatagramTransport", # from transports
|
|
956
|
+
"SubprocessTransport", # from transports
|
|
957
|
+
"SelectorEventLoop", # from unix_events
|
|
958
|
+
"AbstractChildWatcher", # from unix_events
|
|
959
|
+
"SafeChildWatcher", # from unix_events
|
|
960
|
+
"FastChildWatcher", # from unix_events
|
|
961
|
+
"PidfdChildWatcher", # from unix_events
|
|
962
|
+
"MultiLoopChildWatcher", # from unix_events
|
|
963
|
+
"ThreadedChildWatcher", # from unix_events
|
|
964
|
+
"DefaultEventLoopPolicy", # from unix_events
|
|
965
|
+
)
|
|
966
|
+
elif sys.version_info >= (3, 11):
|
|
967
|
+
__all__ = (
|
|
968
|
+
"BaseEventLoop", # from base_events
|
|
969
|
+
"Server", # from base_events
|
|
970
|
+
"iscoroutinefunction", # from coroutines
|
|
971
|
+
"iscoroutine", # from coroutines
|
|
972
|
+
"AbstractEventLoopPolicy", # from events
|
|
973
|
+
"AbstractEventLoop", # from events
|
|
974
|
+
"AbstractServer", # from events
|
|
975
|
+
"Handle", # from events
|
|
976
|
+
"TimerHandle", # from events
|
|
977
|
+
"get_event_loop_policy", # from events
|
|
978
|
+
"set_event_loop_policy", # from events
|
|
979
|
+
"get_event_loop", # from events
|
|
980
|
+
"set_event_loop", # from events
|
|
981
|
+
"new_event_loop", # from events
|
|
982
|
+
"get_child_watcher", # from events
|
|
983
|
+
"set_child_watcher", # from events
|
|
984
|
+
"_set_running_loop", # from events
|
|
985
|
+
"get_running_loop", # from events
|
|
986
|
+
"_get_running_loop", # from events
|
|
987
|
+
"BrokenBarrierError", # from exceptions
|
|
988
|
+
"CancelledError", # from exceptions
|
|
989
|
+
"InvalidStateError", # from exceptions
|
|
990
|
+
"TimeoutError", # from exceptions
|
|
991
|
+
"IncompleteReadError", # from exceptions
|
|
992
|
+
"LimitOverrunError", # from exceptions
|
|
993
|
+
"SendfileNotAvailableError", # from exceptions
|
|
994
|
+
"Future", # from futures
|
|
995
|
+
"wrap_future", # from futures
|
|
996
|
+
"isfuture", # from futures
|
|
997
|
+
"Lock", # from locks
|
|
998
|
+
"Event", # from locks
|
|
999
|
+
"Condition", # from locks
|
|
1000
|
+
"Semaphore", # from locks
|
|
1001
|
+
"BoundedSemaphore", # from locks
|
|
1002
|
+
"Barrier", # from locks
|
|
1003
|
+
"BaseProtocol", # from protocols
|
|
1004
|
+
"Protocol", # from protocols
|
|
1005
|
+
"DatagramProtocol", # from protocols
|
|
1006
|
+
"SubprocessProtocol", # from protocols
|
|
1007
|
+
"BufferedProtocol", # from protocols
|
|
1008
|
+
"Runner", # from runners
|
|
1009
|
+
"run", # from runners
|
|
1010
|
+
"Queue", # from queues
|
|
1011
|
+
"PriorityQueue", # from queues
|
|
1012
|
+
"LifoQueue", # from queues
|
|
1013
|
+
"QueueFull", # from queues
|
|
1014
|
+
"QueueEmpty", # from queues
|
|
1015
|
+
"StreamReader", # from streams
|
|
1016
|
+
"StreamWriter", # from streams
|
|
1017
|
+
"StreamReaderProtocol", # from streams
|
|
1018
|
+
"open_connection", # from streams
|
|
1019
|
+
"start_server", # from streams
|
|
1020
|
+
"open_unix_connection", # from streams
|
|
1021
|
+
"start_unix_server", # from streams
|
|
1022
|
+
"create_subprocess_exec", # from subprocess
|
|
1023
|
+
"create_subprocess_shell", # from subprocess
|
|
1024
|
+
"Task", # from tasks
|
|
1025
|
+
"create_task", # from tasks
|
|
1026
|
+
"FIRST_COMPLETED", # from tasks
|
|
1027
|
+
"FIRST_EXCEPTION", # from tasks
|
|
1028
|
+
"ALL_COMPLETED", # from tasks
|
|
1029
|
+
"wait", # from tasks
|
|
1030
|
+
"wait_for", # from tasks
|
|
1031
|
+
"as_completed", # from tasks
|
|
1032
|
+
"sleep", # from tasks
|
|
1033
|
+
"gather", # from tasks
|
|
1034
|
+
"shield", # from tasks
|
|
1035
|
+
"ensure_future", # from tasks
|
|
1036
|
+
"run_coroutine_threadsafe", # from tasks
|
|
1037
|
+
"current_task", # from tasks
|
|
1038
|
+
"all_tasks", # from tasks
|
|
1039
|
+
"_register_task", # from tasks
|
|
1040
|
+
"_unregister_task", # from tasks
|
|
1041
|
+
"_enter_task", # from tasks
|
|
1042
|
+
"_leave_task", # from tasks
|
|
1043
|
+
"to_thread", # from threads
|
|
1044
|
+
"Timeout", # from timeouts
|
|
1045
|
+
"timeout", # from timeouts
|
|
1046
|
+
"timeout_at", # from timeouts
|
|
1047
|
+
"BaseTransport", # from transports
|
|
1048
|
+
"ReadTransport", # from transports
|
|
1049
|
+
"WriteTransport", # from transports
|
|
1050
|
+
"Transport", # from transports
|
|
1051
|
+
"DatagramTransport", # from transports
|
|
1052
|
+
"SubprocessTransport", # from transports
|
|
1053
|
+
"SelectorEventLoop", # from unix_events
|
|
1054
|
+
"AbstractChildWatcher", # from unix_events
|
|
1055
|
+
"SafeChildWatcher", # from unix_events
|
|
1056
|
+
"FastChildWatcher", # from unix_events
|
|
1057
|
+
"PidfdChildWatcher", # from unix_events
|
|
1058
|
+
"MultiLoopChildWatcher", # from unix_events
|
|
1059
|
+
"ThreadedChildWatcher", # from unix_events
|
|
1060
|
+
"DefaultEventLoopPolicy", # from unix_events
|
|
1061
|
+
)
|
|
1062
|
+
elif sys.version_info >= (3, 10):
|
|
1063
|
+
__all__ = (
|
|
1064
|
+
"BaseEventLoop", # from base_events
|
|
1065
|
+
"Server", # from base_events
|
|
1066
|
+
"coroutine", # from coroutines
|
|
1067
|
+
"iscoroutinefunction", # from coroutines
|
|
1068
|
+
"iscoroutine", # from coroutines
|
|
1069
|
+
"AbstractEventLoopPolicy", # from events
|
|
1070
|
+
"AbstractEventLoop", # from events
|
|
1071
|
+
"AbstractServer", # from events
|
|
1072
|
+
"Handle", # from events
|
|
1073
|
+
"TimerHandle", # from events
|
|
1074
|
+
"get_event_loop_policy", # from events
|
|
1075
|
+
"set_event_loop_policy", # from events
|
|
1076
|
+
"get_event_loop", # from events
|
|
1077
|
+
"set_event_loop", # from events
|
|
1078
|
+
"new_event_loop", # from events
|
|
1079
|
+
"get_child_watcher", # from events
|
|
1080
|
+
"set_child_watcher", # from events
|
|
1081
|
+
"_set_running_loop", # from events
|
|
1082
|
+
"get_running_loop", # from events
|
|
1083
|
+
"_get_running_loop", # from events
|
|
1084
|
+
"CancelledError", # from exceptions
|
|
1085
|
+
"InvalidStateError", # from exceptions
|
|
1086
|
+
"TimeoutError", # from exceptions
|
|
1087
|
+
"IncompleteReadError", # from exceptions
|
|
1088
|
+
"LimitOverrunError", # from exceptions
|
|
1089
|
+
"SendfileNotAvailableError", # from exceptions
|
|
1090
|
+
"Future", # from futures
|
|
1091
|
+
"wrap_future", # from futures
|
|
1092
|
+
"isfuture", # from futures
|
|
1093
|
+
"Lock", # from locks
|
|
1094
|
+
"Event", # from locks
|
|
1095
|
+
"Condition", # from locks
|
|
1096
|
+
"Semaphore", # from locks
|
|
1097
|
+
"BoundedSemaphore", # from locks
|
|
1098
|
+
"BaseProtocol", # from protocols
|
|
1099
|
+
"Protocol", # from protocols
|
|
1100
|
+
"DatagramProtocol", # from protocols
|
|
1101
|
+
"SubprocessProtocol", # from protocols
|
|
1102
|
+
"BufferedProtocol", # from protocols
|
|
1103
|
+
"run", # from runners
|
|
1104
|
+
"Queue", # from queues
|
|
1105
|
+
"PriorityQueue", # from queues
|
|
1106
|
+
"LifoQueue", # from queues
|
|
1107
|
+
"QueueFull", # from queues
|
|
1108
|
+
"QueueEmpty", # from queues
|
|
1109
|
+
"StreamReader", # from streams
|
|
1110
|
+
"StreamWriter", # from streams
|
|
1111
|
+
"StreamReaderProtocol", # from streams
|
|
1112
|
+
"open_connection", # from streams
|
|
1113
|
+
"start_server", # from streams
|
|
1114
|
+
"open_unix_connection", # from streams
|
|
1115
|
+
"start_unix_server", # from streams
|
|
1116
|
+
"create_subprocess_exec", # from subprocess
|
|
1117
|
+
"create_subprocess_shell", # from subprocess
|
|
1118
|
+
"Task", # from tasks
|
|
1119
|
+
"create_task", # from tasks
|
|
1120
|
+
"FIRST_COMPLETED", # from tasks
|
|
1121
|
+
"FIRST_EXCEPTION", # from tasks
|
|
1122
|
+
"ALL_COMPLETED", # from tasks
|
|
1123
|
+
"wait", # from tasks
|
|
1124
|
+
"wait_for", # from tasks
|
|
1125
|
+
"as_completed", # from tasks
|
|
1126
|
+
"sleep", # from tasks
|
|
1127
|
+
"gather", # from tasks
|
|
1128
|
+
"shield", # from tasks
|
|
1129
|
+
"ensure_future", # from tasks
|
|
1130
|
+
"run_coroutine_threadsafe", # from tasks
|
|
1131
|
+
"current_task", # from tasks
|
|
1132
|
+
"all_tasks", # from tasks
|
|
1133
|
+
"_register_task", # from tasks
|
|
1134
|
+
"_unregister_task", # from tasks
|
|
1135
|
+
"_enter_task", # from tasks
|
|
1136
|
+
"_leave_task", # from tasks
|
|
1137
|
+
"to_thread", # from threads
|
|
1138
|
+
"BaseTransport", # from transports
|
|
1139
|
+
"ReadTransport", # from transports
|
|
1140
|
+
"WriteTransport", # from transports
|
|
1141
|
+
"Transport", # from transports
|
|
1142
|
+
"DatagramTransport", # from transports
|
|
1143
|
+
"SubprocessTransport", # from transports
|
|
1144
|
+
"SelectorEventLoop", # from unix_events
|
|
1145
|
+
"AbstractChildWatcher", # from unix_events
|
|
1146
|
+
"SafeChildWatcher", # from unix_events
|
|
1147
|
+
"FastChildWatcher", # from unix_events
|
|
1148
|
+
"PidfdChildWatcher", # from unix_events
|
|
1149
|
+
"MultiLoopChildWatcher", # from unix_events
|
|
1150
|
+
"ThreadedChildWatcher", # from unix_events
|
|
1151
|
+
"DefaultEventLoopPolicy", # from unix_events
|
|
1152
|
+
)
|
|
1153
|
+
elif sys.version_info >= (3, 9):
|
|
1154
|
+
__all__ = (
|
|
1155
|
+
"BaseEventLoop", # from base_events
|
|
1156
|
+
"Server", # from base_events
|
|
1157
|
+
"coroutine", # from coroutines
|
|
1158
|
+
"iscoroutinefunction", # from coroutines
|
|
1159
|
+
"iscoroutine", # from coroutines
|
|
1160
|
+
"AbstractEventLoopPolicy", # from events
|
|
1161
|
+
"AbstractEventLoop", # from events
|
|
1162
|
+
"AbstractServer", # from events
|
|
1163
|
+
"Handle", # from events
|
|
1164
|
+
"TimerHandle", # from events
|
|
1165
|
+
"get_event_loop_policy", # from events
|
|
1166
|
+
"set_event_loop_policy", # from events
|
|
1167
|
+
"get_event_loop", # from events
|
|
1168
|
+
"set_event_loop", # from events
|
|
1169
|
+
"new_event_loop", # from events
|
|
1170
|
+
"get_child_watcher", # from events
|
|
1171
|
+
"set_child_watcher", # from events
|
|
1172
|
+
"_set_running_loop", # from events
|
|
1173
|
+
"get_running_loop", # from events
|
|
1174
|
+
"_get_running_loop", # from events
|
|
1175
|
+
"CancelledError", # from exceptions
|
|
1176
|
+
"InvalidStateError", # from exceptions
|
|
1177
|
+
"TimeoutError", # from exceptions
|
|
1178
|
+
"IncompleteReadError", # from exceptions
|
|
1179
|
+
"LimitOverrunError", # from exceptions
|
|
1180
|
+
"SendfileNotAvailableError", # from exceptions
|
|
1181
|
+
"Future", # from futures
|
|
1182
|
+
"wrap_future", # from futures
|
|
1183
|
+
"isfuture", # from futures
|
|
1184
|
+
"Lock", # from locks
|
|
1185
|
+
"Event", # from locks
|
|
1186
|
+
"Condition", # from locks
|
|
1187
|
+
"Semaphore", # from locks
|
|
1188
|
+
"BoundedSemaphore", # from locks
|
|
1189
|
+
"BaseProtocol", # from protocols
|
|
1190
|
+
"Protocol", # from protocols
|
|
1191
|
+
"DatagramProtocol", # from protocols
|
|
1192
|
+
"SubprocessProtocol", # from protocols
|
|
1193
|
+
"BufferedProtocol", # from protocols
|
|
1194
|
+
"run", # from runners
|
|
1195
|
+
"Queue", # from queues
|
|
1196
|
+
"PriorityQueue", # from queues
|
|
1197
|
+
"LifoQueue", # from queues
|
|
1198
|
+
"QueueFull", # from queues
|
|
1199
|
+
"QueueEmpty", # from queues
|
|
1200
|
+
"StreamReader", # from streams
|
|
1201
|
+
"StreamWriter", # from streams
|
|
1202
|
+
"StreamReaderProtocol", # from streams
|
|
1203
|
+
"open_connection", # from streams
|
|
1204
|
+
"start_server", # from streams
|
|
1205
|
+
"open_unix_connection", # from streams
|
|
1206
|
+
"start_unix_server", # from streams
|
|
1207
|
+
"create_subprocess_exec", # from subprocess
|
|
1208
|
+
"create_subprocess_shell", # from subprocess
|
|
1209
|
+
"Task", # from tasks
|
|
1210
|
+
"create_task", # from tasks
|
|
1211
|
+
"FIRST_COMPLETED", # from tasks
|
|
1212
|
+
"FIRST_EXCEPTION", # from tasks
|
|
1213
|
+
"ALL_COMPLETED", # from tasks
|
|
1214
|
+
"wait", # from tasks
|
|
1215
|
+
"wait_for", # from tasks
|
|
1216
|
+
"as_completed", # from tasks
|
|
1217
|
+
"sleep", # from tasks
|
|
1218
|
+
"gather", # from tasks
|
|
1219
|
+
"shield", # from tasks
|
|
1220
|
+
"ensure_future", # from tasks
|
|
1221
|
+
"run_coroutine_threadsafe", # from tasks
|
|
1222
|
+
"current_task", # from tasks
|
|
1223
|
+
"all_tasks", # from tasks
|
|
1224
|
+
"_register_task", # from tasks
|
|
1225
|
+
"_unregister_task", # from tasks
|
|
1226
|
+
"_enter_task", # from tasks
|
|
1227
|
+
"_leave_task", # from tasks
|
|
1228
|
+
"to_thread", # from threads
|
|
1229
|
+
"BaseTransport", # from transports
|
|
1230
|
+
"ReadTransport", # from transports
|
|
1231
|
+
"WriteTransport", # from transports
|
|
1232
|
+
"Transport", # from transports
|
|
1233
|
+
"DatagramTransport", # from transports
|
|
1234
|
+
"SubprocessTransport", # from transports
|
|
1235
|
+
"SelectorEventLoop", # from unix_events
|
|
1236
|
+
"AbstractChildWatcher", # from unix_events
|
|
1237
|
+
"SafeChildWatcher", # from unix_events
|
|
1238
|
+
"FastChildWatcher", # from unix_events
|
|
1239
|
+
"PidfdChildWatcher", # from unix_events
|
|
1240
|
+
"MultiLoopChildWatcher", # from unix_events
|
|
1241
|
+
"ThreadedChildWatcher", # from unix_events
|
|
1242
|
+
"DefaultEventLoopPolicy", # from unix_events
|
|
1243
|
+
)
|
|
1244
|
+
else:
|
|
1245
|
+
__all__ = (
|
|
1246
|
+
"BaseEventLoop", # from base_events
|
|
1247
|
+
"coroutine", # from coroutines
|
|
1248
|
+
"iscoroutinefunction", # from coroutines
|
|
1249
|
+
"iscoroutine", # from coroutines
|
|
1250
|
+
"AbstractEventLoopPolicy", # from events
|
|
1251
|
+
"AbstractEventLoop", # from events
|
|
1252
|
+
"AbstractServer", # from events
|
|
1253
|
+
"Handle", # from events
|
|
1254
|
+
"TimerHandle", # from events
|
|
1255
|
+
"get_event_loop_policy", # from events
|
|
1256
|
+
"set_event_loop_policy", # from events
|
|
1257
|
+
"get_event_loop", # from events
|
|
1258
|
+
"set_event_loop", # from events
|
|
1259
|
+
"new_event_loop", # from events
|
|
1260
|
+
"get_child_watcher", # from events
|
|
1261
|
+
"set_child_watcher", # from events
|
|
1262
|
+
"_set_running_loop", # from events
|
|
1263
|
+
"get_running_loop", # from events
|
|
1264
|
+
"_get_running_loop", # from events
|
|
1265
|
+
"CancelledError", # from exceptions
|
|
1266
|
+
"InvalidStateError", # from exceptions
|
|
1267
|
+
"TimeoutError", # from exceptions
|
|
1268
|
+
"IncompleteReadError", # from exceptions
|
|
1269
|
+
"LimitOverrunError", # from exceptions
|
|
1270
|
+
"SendfileNotAvailableError", # from exceptions
|
|
1271
|
+
"Future", # from futures
|
|
1272
|
+
"wrap_future", # from futures
|
|
1273
|
+
"isfuture", # from futures
|
|
1274
|
+
"Lock", # from locks
|
|
1275
|
+
"Event", # from locks
|
|
1276
|
+
"Condition", # from locks
|
|
1277
|
+
"Semaphore", # from locks
|
|
1278
|
+
"BoundedSemaphore", # from locks
|
|
1279
|
+
"BaseProtocol", # from protocols
|
|
1280
|
+
"Protocol", # from protocols
|
|
1281
|
+
"DatagramProtocol", # from protocols
|
|
1282
|
+
"SubprocessProtocol", # from protocols
|
|
1283
|
+
"BufferedProtocol", # from protocols
|
|
1284
|
+
"run", # from runners
|
|
1285
|
+
"Queue", # from queues
|
|
1286
|
+
"PriorityQueue", # from queues
|
|
1287
|
+
"LifoQueue", # from queues
|
|
1288
|
+
"QueueFull", # from queues
|
|
1289
|
+
"QueueEmpty", # from queues
|
|
1290
|
+
"StreamReader", # from streams
|
|
1291
|
+
"StreamWriter", # from streams
|
|
1292
|
+
"StreamReaderProtocol", # from streams
|
|
1293
|
+
"open_connection", # from streams
|
|
1294
|
+
"start_server", # from streams
|
|
1295
|
+
"open_unix_connection", # from streams
|
|
1296
|
+
"start_unix_server", # from streams
|
|
1297
|
+
"create_subprocess_exec", # from subprocess
|
|
1298
|
+
"create_subprocess_shell", # from subprocess
|
|
1299
|
+
"Task", # from tasks
|
|
1300
|
+
"create_task", # from tasks
|
|
1301
|
+
"FIRST_COMPLETED", # from tasks
|
|
1302
|
+
"FIRST_EXCEPTION", # from tasks
|
|
1303
|
+
"ALL_COMPLETED", # from tasks
|
|
1304
|
+
"wait", # from tasks
|
|
1305
|
+
"wait_for", # from tasks
|
|
1306
|
+
"as_completed", # from tasks
|
|
1307
|
+
"sleep", # from tasks
|
|
1308
|
+
"gather", # from tasks
|
|
1309
|
+
"shield", # from tasks
|
|
1310
|
+
"ensure_future", # from tasks
|
|
1311
|
+
"run_coroutine_threadsafe", # from tasks
|
|
1312
|
+
"current_task", # from tasks
|
|
1313
|
+
"all_tasks", # from tasks
|
|
1314
|
+
"_register_task", # from tasks
|
|
1315
|
+
"_unregister_task", # from tasks
|
|
1316
|
+
"_enter_task", # from tasks
|
|
1317
|
+
"_leave_task", # from tasks
|
|
1318
|
+
"BaseTransport", # from transports
|
|
1319
|
+
"ReadTransport", # from transports
|
|
1320
|
+
"WriteTransport", # from transports
|
|
1321
|
+
"Transport", # from transports
|
|
1322
|
+
"DatagramTransport", # from transports
|
|
1323
|
+
"SubprocessTransport", # from transports
|
|
1324
|
+
"SelectorEventLoop", # from unix_events
|
|
1325
|
+
"AbstractChildWatcher", # from unix_events
|
|
1326
|
+
"SafeChildWatcher", # from unix_events
|
|
1327
|
+
"FastChildWatcher", # from unix_events
|
|
1328
|
+
"MultiLoopChildWatcher", # from unix_events
|
|
1329
|
+
"ThreadedChildWatcher", # from unix_events
|
|
1330
|
+
"DefaultEventLoopPolicy", # from unix_events
|
|
1331
|
+
)
|
|
1332
|
+
|
|
33
1333
|
_T_co = TypeVar("_T_co", covariant=True)
|
|
34
1334
|
|
|
35
1335
|
# Aliases imported by multiple submodules in typeshed
|