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
|
@@ -16,6 +16,11 @@ class Command:
|
|
|
16
16
|
distribution: Distribution
|
|
17
17
|
# Any to work around variance issues
|
|
18
18
|
sub_commands: ClassVar[list[tuple[str, Callable[[Any], bool] | None]]]
|
|
19
|
+
user_options: ClassVar[
|
|
20
|
+
# Specifying both because list is invariant. Avoids mypy override assignment issues
|
|
21
|
+
list[tuple[str, str, str]]
|
|
22
|
+
| list[tuple[str, str | None, str]]
|
|
23
|
+
]
|
|
19
24
|
def __init__(self, dist: Distribution) -> None: ...
|
|
20
25
|
def ensure_finalized(self) -> None: ...
|
|
21
26
|
@abstractmethod
|
|
@@ -13,7 +13,7 @@ class ListCompat(dict[str, tuple[str, str]]):
|
|
|
13
13
|
|
|
14
14
|
class bdist(Command):
|
|
15
15
|
description: ClassVar[str]
|
|
16
|
-
user_options: ClassVar[list[tuple[str, str | None, str
|
|
16
|
+
user_options: ClassVar[list[tuple[str, str | None, str]]]
|
|
17
17
|
boolean_options: ClassVar[list[str]]
|
|
18
18
|
help_options: ClassVar[list[tuple[str, str | None, str, Callable[[], Unused]]]]
|
|
19
19
|
no_format_option: ClassVar[tuple[str, ...]]
|
package/dist/typeshed-fallback/stubs/setuptools/setuptools/_distutils/command/install_data.pyi
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
from _typeshed import Incomplete
|
|
2
|
+
from typing import ClassVar
|
|
2
3
|
|
|
3
4
|
from ..cmd import Command
|
|
4
5
|
|
|
5
6
|
class install_data(Command):
|
|
6
7
|
description: str
|
|
7
|
-
user_options:
|
|
8
|
+
user_options: ClassVar[list[tuple[str, str | None, str]]]
|
|
8
9
|
boolean_options: Incomplete
|
|
9
10
|
install_dir: Incomplete
|
|
10
11
|
outfiles: Incomplete
|
|
@@ -152,24 +152,24 @@ class Distribution:
|
|
|
152
152
|
def get_obsoletes(self) -> list[str]: ...
|
|
153
153
|
|
|
154
154
|
# Default attributes generated in __init__ from self.display_option_names
|
|
155
|
-
help_commands: bool
|
|
156
|
-
name: str | Literal[
|
|
157
|
-
version: str | Literal[
|
|
158
|
-
fullname: str | Literal[
|
|
159
|
-
author: str | Literal[
|
|
160
|
-
author_email: str | Literal[
|
|
161
|
-
maintainer: str | Literal[
|
|
162
|
-
maintainer_email: str | Literal[
|
|
163
|
-
contact: str | Literal[
|
|
164
|
-
contact_email: str | Literal[
|
|
165
|
-
url: str | Literal[
|
|
166
|
-
license: str | Literal[
|
|
167
|
-
licence: str | Literal[
|
|
168
|
-
description: str | Literal[
|
|
169
|
-
long_description: str | Literal[
|
|
170
|
-
platforms: str | list[str] | Literal[
|
|
171
|
-
classifiers: str | list[str] | Literal[
|
|
172
|
-
keywords: str | list[str] | Literal[
|
|
173
|
-
provides: list[str] | Literal[
|
|
174
|
-
requires: list[str] | Literal[
|
|
175
|
-
obsoletes: list[str] | Literal[
|
|
155
|
+
help_commands: bool
|
|
156
|
+
name: str | Literal[False]
|
|
157
|
+
version: str | Literal[False]
|
|
158
|
+
fullname: str | Literal[False]
|
|
159
|
+
author: str | Literal[False]
|
|
160
|
+
author_email: str | Literal[False]
|
|
161
|
+
maintainer: str | Literal[False]
|
|
162
|
+
maintainer_email: str | Literal[False]
|
|
163
|
+
contact: str | Literal[False]
|
|
164
|
+
contact_email: str | Literal[False]
|
|
165
|
+
url: str | Literal[False]
|
|
166
|
+
license: str | Literal[False]
|
|
167
|
+
licence: str | Literal[False]
|
|
168
|
+
description: str | Literal[False]
|
|
169
|
+
long_description: str | Literal[False]
|
|
170
|
+
platforms: str | list[str] | Literal[False]
|
|
171
|
+
classifiers: str | list[str] | Literal[False]
|
|
172
|
+
keywords: str | list[str] | Literal[False]
|
|
173
|
+
provides: list[str] | Literal[False]
|
|
174
|
+
requires: list[str] | Literal[False]
|
|
175
|
+
obsoletes: list[str] | Literal[False]
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
from _typeshed import StrPath
|
|
2
|
-
from
|
|
3
|
-
from pathlib import Path
|
|
2
|
+
from collections.abc import Iterable
|
|
4
3
|
|
|
5
4
|
class Extension:
|
|
6
5
|
name: str
|
|
7
|
-
sources: list[str]
|
|
6
|
+
sources: list[str]
|
|
8
7
|
include_dirs: list[str]
|
|
9
8
|
define_macros: list[tuple[str, str | None]]
|
|
10
9
|
undef_macros: list[str]
|
|
@@ -22,7 +21,7 @@ class Extension:
|
|
|
22
21
|
def __init__(
|
|
23
22
|
self,
|
|
24
23
|
name: str,
|
|
25
|
-
sources:
|
|
24
|
+
sources: Iterable[StrPath],
|
|
26
25
|
include_dirs: list[str] | None = None,
|
|
27
26
|
define_macros: list[tuple[str, str | None]] | None = None,
|
|
28
27
|
undef_macros: list[str] | None = None,
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
from _typeshed import StrPath
|
|
2
|
-
from
|
|
3
|
-
from pathlib import Path
|
|
2
|
+
from collections.abc import Iterable
|
|
4
3
|
|
|
5
4
|
from ._distutils.extension import Extension as _Extension
|
|
6
5
|
|
|
@@ -11,7 +10,7 @@ class Extension(_Extension):
|
|
|
11
10
|
def __init__(
|
|
12
11
|
self,
|
|
13
12
|
name: str,
|
|
14
|
-
sources:
|
|
13
|
+
sources: Iterable[StrPath],
|
|
15
14
|
include_dirs: list[str] | None = None,
|
|
16
15
|
define_macros: list[tuple[str, str | None]] | None = None,
|
|
17
16
|
undef_macros: list[str] | None = None,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
version = "1.
|
|
1
|
+
version = "1.17.*"
|
|
2
2
|
upstream_repository = "https://github.com/benjaminp/six"
|
|
@@ -44,7 +44,8 @@ multiline_formats: dict[str, str]
|
|
|
44
44
|
|
|
45
45
|
def simple_separated_format(separator: str) -> TableFormat: ...
|
|
46
46
|
def tabulate(
|
|
47
|
-
|
|
47
|
+
# The key is converted using str().
|
|
48
|
+
tabular_data: Mapping[Any, Iterable[Any]] | Iterable[Iterable[Any]],
|
|
48
49
|
headers: str | dict[str, str] | Sequence[str] = (),
|
|
49
50
|
tablefmt: str | TableFormat = "simple",
|
|
50
51
|
floatfmt: str | Iterable[str] = "g",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from _typeshed import Incomplete, SupportsWrite
|
|
2
|
-
from collections.abc import Awaitable, Callable, Generator, Iterable, Iterator, Mapping
|
|
2
|
+
from collections.abc import AsyncIterator, Awaitable, Callable, Generator, Iterable, Iterator, Mapping
|
|
3
3
|
from typing import NoReturn, TypeVar, overload
|
|
4
4
|
from typing_extensions import Self
|
|
5
5
|
|
|
@@ -84,7 +84,7 @@ class tqdm_asyncio(std_tqdm[_T]):
|
|
|
84
84
|
@overload
|
|
85
85
|
def __init__(
|
|
86
86
|
self,
|
|
87
|
-
iterable: Iterable[_T],
|
|
87
|
+
iterable: Iterable[_T] | AsyncIterator[_T],
|
|
88
88
|
desc: str | None = ...,
|
|
89
89
|
total: float | None = ...,
|
|
90
90
|
leave: bool | None = ...,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
version = "0.9
|
|
2
|
-
upstream_repository = "https://github.com/
|
|
1
|
+
version = "~=0.9.9"
|
|
2
|
+
upstream_repository = "https://github.com/py-vobject/vobject"
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import logging
|
|
2
2
|
from _typeshed import Incomplete, SupportsWrite
|
|
3
3
|
from collections.abc import Iterable, Iterator
|
|
4
|
-
from typing import Any, Literal, TypeVar, overload
|
|
4
|
+
from typing import Any, Final, Literal, TypeVar, overload
|
|
5
|
+
|
|
6
|
+
_V = TypeVar("_V", bound=VBase)
|
|
7
|
+
_W = TypeVar("_W", bound=SupportsWrite[bytes])
|
|
5
8
|
|
|
6
9
|
logger: logging.Logger
|
|
7
10
|
DEBUG: bool
|
|
@@ -12,8 +15,7 @@ SPACE: str
|
|
|
12
15
|
TAB: str
|
|
13
16
|
SPACEORTAB: str
|
|
14
17
|
|
|
15
|
-
|
|
16
|
-
_W = TypeVar("_W", bound=SupportsWrite[bytes])
|
|
18
|
+
VERSION: Final[str]
|
|
17
19
|
|
|
18
20
|
class VBase:
|
|
19
21
|
group: Incomplete | None
|
|
@@ -23,7 +25,7 @@ class VBase:
|
|
|
23
25
|
def __init__(self, group: Incomplete | None = None) -> None: ...
|
|
24
26
|
def copy(self, copyit: VBase) -> None: ...
|
|
25
27
|
def validate(self, *args, **kwds) -> bool: ...
|
|
26
|
-
def getChildren(self) -> list[
|
|
28
|
+
def getChildren(self) -> list[Incomplete]: ...
|
|
27
29
|
def clearBehavior(self, cascade: bool = True) -> None: ...
|
|
28
30
|
def autoBehavior(self, cascade: bool = False) -> None: ...
|
|
29
31
|
def setBehavior(self, behavior, cascade: bool = True) -> None: ...
|
|
@@ -50,13 +52,13 @@ class VBase:
|
|
|
50
52
|
def toVName(name, stripNum: int = 0, upper: bool = False): ...
|
|
51
53
|
|
|
52
54
|
class ContentLine(VBase):
|
|
53
|
-
name:
|
|
54
|
-
encoded:
|
|
55
|
-
params:
|
|
56
|
-
singletonparams:
|
|
57
|
-
isNative:
|
|
58
|
-
lineNumber:
|
|
59
|
-
value:
|
|
55
|
+
name: Incomplete
|
|
56
|
+
encoded: Incomplete
|
|
57
|
+
params: Incomplete
|
|
58
|
+
singletonparams: Incomplete
|
|
59
|
+
isNative: Incomplete
|
|
60
|
+
lineNumber: Incomplete
|
|
61
|
+
value: Incomplete
|
|
60
62
|
def __init__(
|
|
61
63
|
self,
|
|
62
64
|
name,
|
|
@@ -82,7 +84,7 @@ class ContentLine(VBase):
|
|
|
82
84
|
|
|
83
85
|
class Component(VBase):
|
|
84
86
|
contents: dict[str, list[VBase]]
|
|
85
|
-
name:
|
|
87
|
+
name: Incomplete
|
|
86
88
|
useBegin: bool
|
|
87
89
|
def __init__(self, name: Incomplete | None = None, *args, **kwds) -> None: ...
|
|
88
90
|
@classmethod
|
|
@@ -90,7 +92,7 @@ class Component(VBase):
|
|
|
90
92
|
def copy(self, copyit) -> None: ...
|
|
91
93
|
def setProfile(self, name) -> None: ...
|
|
92
94
|
def __getattr__(self, name: str): ...
|
|
93
|
-
normal_attributes:
|
|
95
|
+
normal_attributes: Incomplete
|
|
94
96
|
def __setattr__(self, name: str, value) -> None: ...
|
|
95
97
|
def __delattr__(self, name: str) -> None: ...
|
|
96
98
|
def getChildValue(self, childName, default: Incomplete | None = None, childNumber: int = 0): ...
|
|
@@ -105,7 +107,7 @@ class Component(VBase):
|
|
|
105
107
|
@overload
|
|
106
108
|
def add(self, objOrName: str, group: str | None = None) -> Any: ... # returns VBase sub-class
|
|
107
109
|
def remove(self, obj) -> None: ...
|
|
108
|
-
def getChildren(self) -> list[
|
|
110
|
+
def getChildren(self) -> list[Incomplete]: ...
|
|
109
111
|
def components(self) -> Iterable[Component]: ...
|
|
110
112
|
def lines(self): ...
|
|
111
113
|
def sortChildKeys(self): ...
|
|
@@ -116,25 +118,25 @@ class Component(VBase):
|
|
|
116
118
|
def prettyPrint(self, level: int = 0, tabwidth: int = 3) -> None: ...
|
|
117
119
|
|
|
118
120
|
class VObjectError(Exception):
|
|
119
|
-
msg:
|
|
120
|
-
lineNumber:
|
|
121
|
+
msg: Incomplete
|
|
122
|
+
lineNumber: Incomplete
|
|
121
123
|
def __init__(self, msg, lineNumber: Incomplete | None = None) -> None: ...
|
|
122
124
|
|
|
123
125
|
class ParseError(VObjectError): ...
|
|
124
126
|
class ValidateError(VObjectError): ...
|
|
125
127
|
class NativeError(VObjectError): ...
|
|
126
128
|
|
|
127
|
-
patterns:
|
|
128
|
-
param_values_re:
|
|
129
|
-
params_re:
|
|
130
|
-
line_re:
|
|
131
|
-
begin_re:
|
|
129
|
+
patterns: Incomplete
|
|
130
|
+
param_values_re: Incomplete
|
|
131
|
+
params_re: Incomplete
|
|
132
|
+
line_re: Incomplete
|
|
133
|
+
begin_re: Incomplete
|
|
132
134
|
|
|
133
135
|
def parseParams(string): ...
|
|
134
136
|
def parseLine(line, lineNumber: Incomplete | None = None): ...
|
|
135
137
|
|
|
136
|
-
wrap_re:
|
|
137
|
-
logical_lines_re:
|
|
138
|
+
wrap_re: Incomplete
|
|
139
|
+
logical_lines_re: Incomplete
|
|
138
140
|
testLines: str
|
|
139
141
|
|
|
140
142
|
def getLogicalLines(fp, allowQP: bool = True) -> None: ...
|
|
@@ -144,7 +146,7 @@ def foldOneLine(outbuf, input, lineLength: int = 75) -> None: ...
|
|
|
144
146
|
def defaultSerialize(obj, buf, lineLength): ...
|
|
145
147
|
|
|
146
148
|
class Stack:
|
|
147
|
-
stack:
|
|
149
|
+
stack: Incomplete
|
|
148
150
|
def __len__(self) -> int: ...
|
|
149
151
|
def top(self): ...
|
|
150
152
|
def topName(self): ...
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
from
|
|
1
|
+
from _typeshed import Incomplete
|
|
2
|
+
from typing import ClassVar
|
|
2
3
|
|
|
3
4
|
class Behavior:
|
|
4
5
|
name: str
|
|
5
6
|
description: str
|
|
6
7
|
versionString: str
|
|
7
|
-
knownChildren:
|
|
8
|
+
knownChildren: ClassVar[dict[str, tuple[int, int | None, int | None]]]
|
|
8
9
|
quotedPrintable: bool
|
|
9
|
-
defaultBehavior:
|
|
10
|
+
defaultBehavior: Incomplete
|
|
10
11
|
hasNative: bool
|
|
11
12
|
isComponent: bool
|
|
12
13
|
allowGroup: bool
|
|
13
14
|
forceUTC: bool
|
|
14
|
-
sortFirst:
|
|
15
|
+
sortFirst: Incomplete
|
|
15
16
|
@classmethod
|
|
16
17
|
def validate(cls, obj, raiseException: bool = False, complainUnrecognized: bool = False): ...
|
|
17
18
|
@classmethod
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
+
import datetime
|
|
1
2
|
from _typeshed import Incomplete
|
|
2
3
|
from datetime import timedelta
|
|
3
|
-
from typing import Any
|
|
4
|
+
from typing import Any, Final
|
|
4
5
|
|
|
5
6
|
from .base import Component
|
|
6
7
|
from .behavior import Behavior
|
|
7
8
|
|
|
8
|
-
DATENAMES: tuple[str, ...]
|
|
9
|
-
RULENAMES: tuple[str, ...]
|
|
10
|
-
DATESANDRULES: tuple[str, ...]
|
|
11
|
-
PRODID: str
|
|
12
|
-
WEEKDAYS: tuple[str, ...]
|
|
13
|
-
FREQUENCIES: tuple[str, ...]
|
|
14
|
-
|
|
15
|
-
twoHours: timedelta
|
|
9
|
+
DATENAMES: Final[tuple[str, ...]]
|
|
10
|
+
RULENAMES: Final[tuple[str, ...]]
|
|
11
|
+
DATESANDRULES: Final[tuple[str, ...]]
|
|
12
|
+
PRODID: Final[str]
|
|
13
|
+
WEEKDAYS: Final[tuple[str, ...]]
|
|
14
|
+
FREQUENCIES: Final[tuple[str, ...]]
|
|
15
|
+
ZERO_DELTA: Final[timedelta]
|
|
16
|
+
twoHours: Final[timedelta]
|
|
16
17
|
|
|
17
18
|
def toUnicode(s: str | bytes) -> str: ...
|
|
18
19
|
def registerTzid(tzid, tzinfo) -> None: ...
|
|
@@ -22,19 +23,19 @@ utc: Any # dateutil.tz.tz.tzutc
|
|
|
22
23
|
|
|
23
24
|
class TimezoneComponent(Component):
|
|
24
25
|
isNative: bool
|
|
25
|
-
behavior:
|
|
26
|
-
tzinfo:
|
|
26
|
+
behavior: Incomplete
|
|
27
|
+
tzinfo: Incomplete
|
|
27
28
|
name: str
|
|
28
29
|
useBegin: bool
|
|
29
30
|
def __init__(self, tzinfo: Incomplete | None = None, *args, **kwds) -> None: ...
|
|
30
31
|
@classmethod
|
|
31
32
|
def registerTzinfo(cls, tzinfo): ...
|
|
32
33
|
def gettzinfo(self): ...
|
|
33
|
-
tzid:
|
|
34
|
-
daylight:
|
|
35
|
-
standard:
|
|
34
|
+
tzid: Incomplete
|
|
35
|
+
daylight: Incomplete
|
|
36
|
+
standard: Incomplete
|
|
36
37
|
def settzinfo(self, tzinfo, start: int = 2000, end: int = 2030): ...
|
|
37
|
-
normal_attributes:
|
|
38
|
+
normal_attributes: Incomplete
|
|
38
39
|
@staticmethod
|
|
39
40
|
def pickTzid(tzinfo, allowUTC: bool = False): ...
|
|
40
41
|
def prettyPrint(self, level, tabwidth) -> None: ... # type: ignore[override]
|
|
@@ -44,7 +45,7 @@ class RecurringComponent(Component):
|
|
|
44
45
|
def __init__(self, *args, **kwds) -> None: ...
|
|
45
46
|
def getrruleset(self, addRDate: bool = False): ...
|
|
46
47
|
def setrruleset(self, rruleset): ...
|
|
47
|
-
rruleset:
|
|
48
|
+
rruleset: Incomplete
|
|
48
49
|
def __setattr__(self, name, value) -> None: ...
|
|
49
50
|
|
|
50
51
|
class TextBehavior(Behavior):
|
|
@@ -55,7 +56,7 @@ class TextBehavior(Behavior):
|
|
|
55
56
|
def encode(cls, line) -> None: ...
|
|
56
57
|
|
|
57
58
|
class VCalendarComponentBehavior(Behavior):
|
|
58
|
-
defaultBehavior:
|
|
59
|
+
defaultBehavior: Incomplete
|
|
59
60
|
isComponent: bool
|
|
60
61
|
|
|
61
62
|
class RecurringBehavior(VCalendarComponentBehavior):
|
|
@@ -105,8 +106,7 @@ class VCalendar2_0(VCalendarComponentBehavior):
|
|
|
105
106
|
name: str
|
|
106
107
|
description: str
|
|
107
108
|
versionString: str
|
|
108
|
-
sortFirst:
|
|
109
|
-
knownChildren: Any
|
|
109
|
+
sortFirst: Incomplete
|
|
110
110
|
@classmethod
|
|
111
111
|
def generateImplicitParameters(cls, obj) -> None: ...
|
|
112
112
|
@classmethod
|
|
@@ -116,8 +116,7 @@ class VTimezone(VCalendarComponentBehavior):
|
|
|
116
116
|
name: str
|
|
117
117
|
hasNative: bool
|
|
118
118
|
description: str
|
|
119
|
-
sortFirst:
|
|
120
|
-
knownChildren: Any
|
|
119
|
+
sortFirst: Incomplete
|
|
121
120
|
@classmethod
|
|
122
121
|
def validate(cls, obj, raiseException, *args): ...
|
|
123
122
|
@staticmethod
|
|
@@ -129,37 +128,31 @@ class TZID(Behavior): ...
|
|
|
129
128
|
|
|
130
129
|
class DaylightOrStandard(VCalendarComponentBehavior):
|
|
131
130
|
hasNative: bool
|
|
132
|
-
knownChildren: Any
|
|
133
131
|
|
|
134
132
|
class VEvent(RecurringBehavior):
|
|
135
133
|
name: str
|
|
136
|
-
sortFirst:
|
|
134
|
+
sortFirst: Incomplete
|
|
137
135
|
description: str
|
|
138
|
-
knownChildren: Any
|
|
139
136
|
@classmethod
|
|
140
137
|
def validate(cls, obj, raiseException, *args): ...
|
|
141
138
|
|
|
142
139
|
class VTodo(RecurringBehavior):
|
|
143
140
|
name: str
|
|
144
141
|
description: str
|
|
145
|
-
knownChildren: Any
|
|
146
142
|
@classmethod
|
|
147
143
|
def validate(cls, obj, raiseException, *args): ...
|
|
148
144
|
|
|
149
145
|
class VJournal(RecurringBehavior):
|
|
150
146
|
name: str
|
|
151
|
-
knownChildren: Any
|
|
152
147
|
|
|
153
148
|
class VFreeBusy(VCalendarComponentBehavior):
|
|
154
149
|
name: str
|
|
155
150
|
description: str
|
|
156
|
-
sortFirst:
|
|
157
|
-
knownChildren: Any
|
|
151
|
+
sortFirst: Incomplete
|
|
158
152
|
|
|
159
153
|
class VAlarm(VCalendarComponentBehavior):
|
|
160
154
|
name: str
|
|
161
155
|
description: str
|
|
162
|
-
knownChildren: Any
|
|
163
156
|
@staticmethod
|
|
164
157
|
def generateImplicitParameters(obj) -> None: ...
|
|
165
158
|
@classmethod
|
|
@@ -168,16 +161,14 @@ class VAlarm(VCalendarComponentBehavior):
|
|
|
168
161
|
class VAvailability(VCalendarComponentBehavior):
|
|
169
162
|
name: str
|
|
170
163
|
description: str
|
|
171
|
-
sortFirst:
|
|
172
|
-
knownChildren: Any
|
|
164
|
+
sortFirst: Incomplete
|
|
173
165
|
@classmethod
|
|
174
166
|
def validate(cls, obj, raiseException, *args): ...
|
|
175
167
|
|
|
176
168
|
class Available(RecurringBehavior):
|
|
177
169
|
name: str
|
|
178
|
-
sortFirst:
|
|
170
|
+
sortFirst: Incomplete
|
|
179
171
|
description: str
|
|
180
|
-
knownChildren: Any
|
|
181
172
|
@classmethod
|
|
182
173
|
def validate(cls, obj, raiseException, *args): ...
|
|
183
174
|
|
|
@@ -212,9 +203,9 @@ class FreeBusy(PeriodBehavior):
|
|
|
212
203
|
|
|
213
204
|
class RRule(Behavior): ...
|
|
214
205
|
|
|
215
|
-
utcDateTimeList:
|
|
216
|
-
dateTimeOrDateList:
|
|
217
|
-
textList:
|
|
206
|
+
utcDateTimeList: Incomplete
|
|
207
|
+
dateTimeOrDateList: Incomplete
|
|
208
|
+
textList: Incomplete
|
|
218
209
|
|
|
219
210
|
def numToDigits(num, places): ...
|
|
220
211
|
def timedeltaToString(delta): ...
|
|
@@ -225,7 +216,7 @@ def deltaToOffset(delta): ...
|
|
|
225
216
|
def periodToString(period, convertToUTC: bool = False): ...
|
|
226
217
|
def isDuration(s): ...
|
|
227
218
|
def stringToDate(s): ...
|
|
228
|
-
def stringToDateTime(s, tzinfo:
|
|
219
|
+
def stringToDateTime(s, tzinfo: datetime.tzinfo | None = None, strict: bool = False) -> datetime.datetime: ...
|
|
229
220
|
|
|
230
221
|
escapableCharList: str
|
|
231
222
|
|
|
@@ -1,27 +1,26 @@
|
|
|
1
1
|
from _typeshed import Incomplete
|
|
2
|
-
from typing import Any
|
|
3
2
|
|
|
4
3
|
from .behavior import Behavior
|
|
5
4
|
|
|
6
5
|
class Name:
|
|
7
|
-
family:
|
|
8
|
-
given:
|
|
9
|
-
additional:
|
|
10
|
-
prefix:
|
|
11
|
-
suffix:
|
|
6
|
+
family: Incomplete
|
|
7
|
+
given: Incomplete
|
|
8
|
+
additional: Incomplete
|
|
9
|
+
prefix: Incomplete
|
|
10
|
+
suffix: Incomplete
|
|
12
11
|
def __init__(self, family: str = "", given: str = "", additional: str = "", prefix: str = "", suffix: str = "") -> None: ...
|
|
13
12
|
@staticmethod
|
|
14
13
|
def toString(val): ...
|
|
15
14
|
def __eq__(self, other): ...
|
|
16
15
|
|
|
17
16
|
class Address:
|
|
18
|
-
box:
|
|
19
|
-
extended:
|
|
20
|
-
street:
|
|
21
|
-
city:
|
|
22
|
-
region:
|
|
23
|
-
code:
|
|
24
|
-
country:
|
|
17
|
+
box: Incomplete
|
|
18
|
+
extended: Incomplete
|
|
19
|
+
street: Incomplete
|
|
20
|
+
city: Incomplete
|
|
21
|
+
region: Incomplete
|
|
22
|
+
code: Incomplete
|
|
23
|
+
country: Incomplete
|
|
25
24
|
def __init__(
|
|
26
25
|
self,
|
|
27
26
|
street: str = "",
|
|
@@ -34,8 +33,8 @@ class Address:
|
|
|
34
33
|
) -> None: ...
|
|
35
34
|
@staticmethod
|
|
36
35
|
def toString(val, join_char: str = "\n"): ...
|
|
37
|
-
lines:
|
|
38
|
-
one_line:
|
|
36
|
+
lines: Incomplete
|
|
37
|
+
one_line: Incomplete
|
|
39
38
|
def __eq__(self, other): ...
|
|
40
39
|
|
|
41
40
|
class VCardTextBehavior(Behavior):
|
|
@@ -48,15 +47,14 @@ class VCardTextBehavior(Behavior):
|
|
|
48
47
|
|
|
49
48
|
class VCardBehavior(Behavior):
|
|
50
49
|
allowGroup: bool
|
|
51
|
-
defaultBehavior:
|
|
50
|
+
defaultBehavior: Incomplete
|
|
52
51
|
|
|
53
52
|
class VCard3_0(VCardBehavior):
|
|
54
53
|
name: str
|
|
55
54
|
description: str
|
|
56
55
|
versionString: str
|
|
57
56
|
isComponent: bool
|
|
58
|
-
sortFirst:
|
|
59
|
-
knownChildren: Any
|
|
57
|
+
sortFirst: Incomplete
|
|
60
58
|
@classmethod
|
|
61
59
|
def generateImplicitParameters(cls, obj) -> None: ...
|
|
62
60
|
|
|
@@ -68,6 +66,8 @@ class Label(VCardTextBehavior):
|
|
|
68
66
|
name: str
|
|
69
67
|
description: str
|
|
70
68
|
|
|
69
|
+
class GEO(VCardBehavior): ...
|
|
70
|
+
|
|
71
71
|
wacky_apple_photo_serialize: bool
|
|
72
72
|
REALLY_LARGE: float
|
|
73
73
|
|
|
@@ -84,8 +84,8 @@ def splitFields(string): ...
|
|
|
84
84
|
def toList(stringOrList): ...
|
|
85
85
|
def serializeFields(obj, order: Incomplete | None = None): ...
|
|
86
86
|
|
|
87
|
-
NAME_ORDER:
|
|
88
|
-
ADDRESS_ORDER:
|
|
87
|
+
NAME_ORDER: Incomplete
|
|
88
|
+
ADDRESS_ORDER: Incomplete
|
|
89
89
|
|
|
90
90
|
class NameBehavior(VCardBehavior):
|
|
91
91
|
hasNative: bool
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import datetime
|
|
2
2
|
import sys
|
|
3
|
-
from
|
|
3
|
+
from _typeshed import Incomplete
|
|
4
4
|
|
|
5
5
|
if sys.platform == "win32":
|
|
6
|
-
handle:
|
|
7
|
-
tzparent:
|
|
8
|
-
parentsize:
|
|
9
|
-
localkey:
|
|
10
|
-
WEEKS:
|
|
6
|
+
handle: Incomplete
|
|
7
|
+
tzparent: Incomplete
|
|
8
|
+
parentsize: Incomplete
|
|
9
|
+
localkey: Incomplete
|
|
10
|
+
WEEKS: Incomplete
|
|
11
11
|
def list_timezones(): ...
|
|
12
12
|
|
|
13
13
|
class win32tz(datetime.tzinfo):
|
|
14
|
-
data:
|
|
14
|
+
data: Incomplete
|
|
15
15
|
def __init__(self, name) -> None: ...
|
|
16
16
|
def utcoffset(self, dt): ...
|
|
17
17
|
def dst(self, dt): ...
|
|
@@ -20,21 +20,21 @@ if sys.platform == "win32":
|
|
|
20
20
|
def pickNthWeekday(year, month, dayofweek, hour, minute, whichweek): ...
|
|
21
21
|
|
|
22
22
|
class win32tz_data:
|
|
23
|
-
display:
|
|
24
|
-
dstname:
|
|
25
|
-
stdname:
|
|
26
|
-
stdoffset:
|
|
27
|
-
dstoffset:
|
|
28
|
-
stdmonth:
|
|
29
|
-
stddayofweek:
|
|
30
|
-
stdweeknumber:
|
|
31
|
-
stdhour:
|
|
32
|
-
stdminute:
|
|
33
|
-
dstmonth:
|
|
34
|
-
dstdayofweek:
|
|
35
|
-
dstweeknumber:
|
|
36
|
-
dsthour:
|
|
37
|
-
dstminute:
|
|
23
|
+
display: Incomplete
|
|
24
|
+
dstname: Incomplete
|
|
25
|
+
stdname: Incomplete
|
|
26
|
+
stdoffset: Incomplete
|
|
27
|
+
dstoffset: Incomplete
|
|
28
|
+
stdmonth: Incomplete
|
|
29
|
+
stddayofweek: Incomplete
|
|
30
|
+
stdweeknumber: Incomplete
|
|
31
|
+
stdhour: Incomplete
|
|
32
|
+
stdminute: Incomplete
|
|
33
|
+
dstmonth: Incomplete
|
|
34
|
+
dstdayofweek: Incomplete
|
|
35
|
+
dstweeknumber: Incomplete
|
|
36
|
+
dsthour: Incomplete
|
|
37
|
+
dstminute: Incomplete
|
|
38
38
|
def __init__(self, path) -> None: ...
|
|
39
39
|
|
|
40
40
|
def valuesToDict(key): ...
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "basedpyright",
|
|
3
3
|
"displayName": "basedpyright",
|
|
4
4
|
"description": "a pyright fork with various type checking improvements, improved vscode support and pylance features built into the language server",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.26.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "detachhead"
|