From 422efef74c4637febfcfdfd4e3d039a6c06e5f2e Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Sun, 31 May 2026 18:10:05 +0000 Subject: [PATCH 01/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=610584&view=results --- .../msal.application.ClientApplication.yml | 50 ++++++--- ...lication.ConfidentialClientApplication.yml | 104 +++++++++++++++--- 2 files changed, 126 insertions(+), 28 deletions(-) diff --git a/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml b/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml index 2bd05217..3fba9505 100644 --- a/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml +++ b/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml @@ -62,22 +62,41 @@ constructor: : [], \"backrefs\": [], \"xml:space\": \"preserve\", \"language\": \"default\"\ , \"force\": false, \"linenos\": false} -->\n\n````default\n\n {\n \"\ client_assertion\": \"...a JWT with claims aud, exp, iss, jti, nbf, and sub...\"\ - \n }\n ````\n\n\n\n## Supporting reading client certificates from PFX filesThis\ - \ usage will automatically use SHA-256 thumbprint of the certificate.*Added\ - \ in version 1.29.0*:\nFeed in a dictionary containing the path to a PFX file:\n\ + \n }\n ````\n\n\n> [!NOTE]\n> A pre-signed JWT string has a fixed expiration.\ + \ Long-running\n>\n> confidential client applications (for example, workloads\ + \ using\n>\n> AKS workload identity federation, or any other dynamic\n>\n> credential\ + \ source) should instead pass a callable which\n>\n> MSAL will invoke on demand\ + \ to obtain a fresh assertion:\n>\n> \n>\n> def get_client_assertion():\n>\n\ + > # e.g. read the projected service-account token from disk\n>\n> with\ + \ open(\"/var/run/secrets/azure/tokens/azure-identity-token\") as f:\n>\n> \ + \ return f.read()\n>\n> \n>\n> app = ConfidentialClientApplication(\n\ + >\n> \"client_id\",\n>\n> client_credential={\"client_assertion\": get_client_assertion},\n\ + >\n> ...,\n>\n> )\n>\n> \n>\n> The callable is only invoked when MSAL needs\ + \ to send a token\n>\n> request on the wire (the in-memory token cache transparently\n\ + >\n> avoids unnecessary calls).\n>\n> \n>\n> If your callback is itself expensive\ + \ (for example it calls\n>\n> out to a key vault), wrap it in \n\ + >\n> to memoize the assertion for its lifetime:\n>\n> \n>\n> from msal import\ + \ AutoRefresher\n>\n> smart_callback = AutoRefresher(get_client_assertion, expires_in=3600)\n\ + >\n> app = ConfidentialClientApplication(\n>\n> \"client_id\",\n>\n> \ + \ client_credential={\"client_assertion\": smart_callback},\n>\n> ...,\n\ + >\n> )\n>\n> \n>\n> Passing a plain str / bytes client_assertion is\n>\n> still\ + \ supported for backward compatibility but is discouraged\n>\n> because the\ + \ assertion will eventually expire.\n>\n\n\n\n## Supporting reading client certificates\ + \ from PFX filesThis usage will automatically use SHA-256 thumbprint of the\ + \ certificate.*Added in version 1.29.0*:\nFeed in a dictionary containing the\ + \ path to a PFX file:\n\n\n\n````default\n\ + \n {\n \"private_key_pfx_path\": \"/path/to/your.pfx\", # Added in\ + \ version 1.29.0\n \"public_certificate\": True, # Only needed if you\ + \ use Subject Name/Issuer auth. Added in version 1.30.0\n \"passphrase\"\ + : \"Passphrase if the private_key is encrypted (Optional)\",\n }\n ````\n\ + \nThe following command will generate a .pfx file from your .key and .pem file:\n\ \n\n\n````default\n\n {\n \"\ - private_key_pfx_path\": \"/path/to/your.pfx\", # Added in version 1.29.0\n\ - \ \"public_certificate\": True, # Only needed if you use Subject Name/Issuer\ - \ auth. Added in version 1.30.0\n \"passphrase\": \"Passphrase if the\ - \ private_key is encrypted (Optional)\",\n }\n ````\n\nThe following command\ - \ will generate a .pfx file from your .key and .pem file:\n\n\n\n````default\n\n openssl pkcs12 -export -out certificate.pfx\ - \ -inkey privateKey.key -in certificate.pem\n ````\n\n[Subject Name/Issuer\ - \ Auth](https://github.com/AzureAD/microsoft-authentication-library-for-python/issues/60)\n\ + , \"force\": false, \"linenos\": false} -->\n\n````default\n\n openssl pkcs12\ + \ -export -out certificate.pfx -inkey privateKey.key -in certificate.pem\n \ + \ ````\n\n[Subject Name/Issuer Auth](https://github.com/AzureAD/microsoft-authentication-library-for-python/issues/60)\n\ is an approach to allow easier certificate rotation.\nIf your .pfx file contains\ \ both the private key and public cert,\nyou can opt in for Subject Name/Issuer\ \ Auth by setting \"public_certificate\" to `True`." @@ -968,6 +987,9 @@ attributes: - uid: msal.application.ClientApplication.ACQUIRE_TOKEN_BY_USERNAME_PASSWORD_ID name: ACQUIRE_TOKEN_BY_USERNAME_PASSWORD_ID signature: ACQUIRE_TOKEN_BY_USERNAME_PASSWORD_ID = '301' +- uid: msal.application.ClientApplication.ACQUIRE_TOKEN_BY_USER_FIC_ID + name: ACQUIRE_TOKEN_BY_USER_FIC_ID + signature: ACQUIRE_TOKEN_BY_USER_FIC_ID = '950' - uid: msal.application.ClientApplication.ACQUIRE_TOKEN_FOR_CLIENT_ID name: ACQUIRE_TOKEN_FOR_CLIENT_ID signature: ACQUIRE_TOKEN_FOR_CLIENT_ID = '730' diff --git a/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml b/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml index 95ec77ce..8d9107db 100644 --- a/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml +++ b/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml @@ -62,22 +62,41 @@ constructor: : [], \"backrefs\": [], \"xml:space\": \"preserve\", \"language\": \"default\"\ , \"force\": false, \"linenos\": false} -->\n\n````default\n\n {\n \"\ client_assertion\": \"...a JWT with claims aud, exp, iss, jti, nbf, and sub...\"\ - \n }\n ````\n\n\n\n## Supporting reading client certificates from PFX filesThis\ - \ usage will automatically use SHA-256 thumbprint of the certificate.*Added\ - \ in version 1.29.0*:\nFeed in a dictionary containing the path to a PFX file:\n\ + \n }\n ````\n\n\n> [!NOTE]\n> A pre-signed JWT string has a fixed expiration.\ + \ Long-running\n>\n> confidential client applications (for example, workloads\ + \ using\n>\n> AKS workload identity federation, or any other dynamic\n>\n> credential\ + \ source) should instead pass a callable which\n>\n> MSAL will invoke on demand\ + \ to obtain a fresh assertion:\n>\n> \n>\n> def get_client_assertion():\n>\n\ + > # e.g. read the projected service-account token from disk\n>\n> with\ + \ open(\"/var/run/secrets/azure/tokens/azure-identity-token\") as f:\n>\n> \ + \ return f.read()\n>\n> \n>\n> app = ConfidentialClientApplication(\n\ + >\n> \"client_id\",\n>\n> client_credential={\"client_assertion\": get_client_assertion},\n\ + >\n> ...,\n>\n> )\n>\n> \n>\n> The callable is only invoked when MSAL needs\ + \ to send a token\n>\n> request on the wire (the in-memory token cache transparently\n\ + >\n> avoids unnecessary calls).\n>\n> \n>\n> If your callback is itself expensive\ + \ (for example it calls\n>\n> out to a key vault), wrap it in \n\ + >\n> to memoize the assertion for its lifetime:\n>\n> \n>\n> from msal import\ + \ AutoRefresher\n>\n> smart_callback = AutoRefresher(get_client_assertion, expires_in=3600)\n\ + >\n> app = ConfidentialClientApplication(\n>\n> \"client_id\",\n>\n> \ + \ client_credential={\"client_assertion\": smart_callback},\n>\n> ...,\n\ + >\n> )\n>\n> \n>\n> Passing a plain str / bytes client_assertion is\n>\n> still\ + \ supported for backward compatibility but is discouraged\n>\n> because the\ + \ assertion will eventually expire.\n>\n\n\n\n## Supporting reading client certificates\ + \ from PFX filesThis usage will automatically use SHA-256 thumbprint of the\ + \ certificate.*Added in version 1.29.0*:\nFeed in a dictionary containing the\ + \ path to a PFX file:\n\n\n\n````default\n\ + \n {\n \"private_key_pfx_path\": \"/path/to/your.pfx\", # Added in\ + \ version 1.29.0\n \"public_certificate\": True, # Only needed if you\ + \ use Subject Name/Issuer auth. Added in version 1.30.0\n \"passphrase\"\ + : \"Passphrase if the private_key is encrypted (Optional)\",\n }\n ````\n\ + \nThe following command will generate a .pfx file from your .key and .pem file:\n\ \n\n\n````default\n\n {\n \"\ - private_key_pfx_path\": \"/path/to/your.pfx\", # Added in version 1.29.0\n\ - \ \"public_certificate\": True, # Only needed if you use Subject Name/Issuer\ - \ auth. Added in version 1.30.0\n \"passphrase\": \"Passphrase if the\ - \ private_key is encrypted (Optional)\",\n }\n ````\n\nThe following command\ - \ will generate a .pfx file from your .key and .pem file:\n\n\n\n````default\n\n openssl pkcs12 -export -out certificate.pfx\ - \ -inkey privateKey.key -in certificate.pem\n ````\n\n[Subject Name/Issuer\ - \ Auth](https://github.com/AzureAD/microsoft-authentication-library-for-python/issues/60)\n\ + , \"force\": false, \"linenos\": false} -->\n\n````default\n\n openssl pkcs12\ + \ -export -out certificate.pfx -inkey privateKey.key -in certificate.pem\n \ + \ ````\n\n[Subject Name/Issuer Auth](https://github.com/AzureAD/microsoft-authentication-library-for-python/issues/60)\n\ is an approach to allow easier certificate rotation.\nIf your .pfx file contains\ \ both the private key and public cert,\nyou can opt in for Subject Name/Issuer\ \ Auth by setting \"public_certificate\" to `True`." @@ -350,6 +369,63 @@ constructor: types: - methods: +- uid: msal.application.ConfidentialClientApplication.acquire_token_by_user_federated_identity_credential + name: acquire_token_by_user_federated_identity_credential + summary: 'Acquires a user-scoped token using the `user_fic` grant type. + + + This method exchanges a federated identity credential (typically an + + agent instance token from Leg 2 of the agent identity protocol) for + + a user-scoped access token, enabling an agent to act on behalf of + + a specific user.' + signature: acquire_token_by_user_federated_identity_credential(scopes, assertion, + username=None, user_object_id=None, claims_challenge=None, **kwargs) + parameters: + - name: scopes + description: Scopes required by downstream API (a resource). + isRequired: true + types: + - [] + - name: assertion + description: 'The federated identity credential token (e.g. the instance token + + obtained from Leg 2 of the agent identity flow).' + isRequired: true + types: + - + - name: username + description: 'The target user''s UPN (User Principal Name). + + Mutually exclusive with `user_object_id`.' + defaultValue: None + types: + - + - name: user_object_id + description: 'The target user''s Object ID. + + Mutually exclusive with `username`.' + defaultValue: None + types: + - + - name: claims_challenge + description: 'The claims_challenge parameter requests specific claims requested + by the resource provider + + in the form of a claims_challenge directive in the www-authenticate header to + be + + returned from the UserInfo Endpoint and/or in the ID Token and/or Access Token. + + It is a string of a JSON object which contains lists of claims being requested + from these locations.' + defaultValue: None + return: + description: "A dict representing the json response from Microsoft Entra:\n\n\ + * A successful response would contain \"access_token\" key, \n\n* an error response\ + \ would contain \"error\" and usually \"error_description\"." - uid: msal.application.ConfidentialClientApplication.acquire_token_for_client name: acquire_token_for_client summary: 'Acquires token for the current confidential client, not for an end user. From e9ed444c60b78644396469c069b3a719763ee53c Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Tue, 2 Jun 2026 18:07:22 +0000 Subject: [PATCH 02/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=610951&view=results --- xrefmap.yml | 90 ++++++++++++++++++++++++++--------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/xrefmap.yml b/xrefmap.yml index 5550b94b..af112a2f 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -6855,18 +6855,18 @@ references: href: https://docs.python.org/3/library/__future__.html#future__._Feature.getOptionalRelease name: getOptionalRelease uid: __future__._Feature.getOptionalRelease -- fullName: _thread.lock.acquire - href: https://docs.python.org/3/library/_thread.html#thread.lock.acquire +- fullName: _thread.LockType.acquire + href: https://docs.python.org/3/library/_thread.html#thread.LockType.acquire name: acquire - uid: _thread.lock.acquire -- fullName: _thread.lock.locked - href: https://docs.python.org/3/library/_thread.html#thread.lock.locked + uid: _thread.LockType.acquire +- fullName: _thread.LockType.locked + href: https://docs.python.org/3/library/_thread.html#thread.LockType.locked name: locked - uid: _thread.lock.locked -- fullName: _thread.lock.release - href: https://docs.python.org/3/library/_thread.html#thread.lock.release + uid: _thread.LockType.locked +- fullName: _thread.LockType.release + href: https://docs.python.org/3/library/_thread.html#thread.LockType.release name: release - uid: _thread.lock.release + uid: _thread.LockType.release - fullName: _tkinter.Widget.tk.createfilehandler href: https://docs.python.org/3/library/tkinter.html#tkinter.Widget.tk.createfilehandler name: createfilehandler @@ -19479,10 +19479,6 @@ references: href: https://docs.python.org/3/library/__future__.html#future__.with_statement name: with_statement uid: __future__.with_statement -- fullName: _thread.LockType - href: https://docs.python.org/3/library/_thread.html#thread.LockType - name: LockType - uid: _thread.LockType - fullName: _thread.TIMEOUT_MAX href: https://docs.python.org/3/library/_thread.html#thread.TIMEOUT_MAX name: TIMEOUT_MAX @@ -25815,10 +25811,6 @@ references: href: https://docs.python.org/3/library/types.html#types.CoroutineType name: CoroutineType uid: types.CoroutineType -- fullName: types.EllipsisType - href: https://docs.python.org/3/library/types.html#types.EllipsisType - name: EllipsisType - uid: types.EllipsisType - fullName: types.FrameType href: https://docs.python.org/3/library/types.html#types.FrameType name: FrameType @@ -25855,14 +25847,6 @@ references: href: https://docs.python.org/3/library/types.html#types.MethodWrapperType name: MethodWrapperType uid: types.MethodWrapperType -- fullName: types.NoneType - href: https://docs.python.org/3/library/types.html#types.NoneType - name: NoneType - uid: types.NoneType -- fullName: types.NotImplementedType - href: https://docs.python.org/3/library/types.html#types.NotImplementedType - name: NotImplementedType - uid: types.NotImplementedType - fullName: types.WrapperDescriptorType href: https://docs.python.org/3/library/types.html#types.WrapperDescriptorType name: WrapperDescriptorType @@ -25923,14 +25907,6 @@ references: href: https://docs.python.org/3/library/typing.html#typing.Optional name: Optional uid: typing.Optional -- fullName: typing.ParamSpecArgs - href: https://docs.python.org/3/library/typing.html#typing.ParamSpecArgs - name: ParamSpecArgs - uid: typing.ParamSpecArgs -- fullName: typing.ParamSpecKwargs - href: https://docs.python.org/3/library/typing.html#typing.ParamSpecKwargs - name: ParamSpecKwargs - uid: typing.ParamSpecKwargs - fullName: typing.ReadOnly href: https://docs.python.org/3/library/typing.html#typing.ReadOnly name: ReadOnly @@ -26035,22 +26011,10 @@ references: href: https://docs.python.org/3/library/uuid.html#uuid.RFC_4122 name: RFC_4122 uid: uuid.RFC_4122 -- fullName: weakref.CallableProxyType - href: https://docs.python.org/3/library/weakref.html#weakref.CallableProxyType - name: CallableProxyType - uid: weakref.CallableProxyType -- fullName: weakref.ProxyType - href: https://docs.python.org/3/library/weakref.html#weakref.ProxyType - name: ProxyType - uid: weakref.ProxyType - fullName: weakref.ProxyTypes href: https://docs.python.org/3/library/weakref.html#weakref.ProxyTypes name: ProxyTypes uid: weakref.ProxyTypes -- fullName: weakref.ReferenceType - href: https://docs.python.org/3/library/weakref.html#weakref.ReferenceType - name: ReferenceType - uid: weakref.ReferenceType - fullName: winreg.HKEY_CLASSES_ROOT href: https://docs.python.org/3/library/winreg.html#winreg.HKEY_CLASSES_ROOT name: HKEY_CLASSES_ROOT @@ -27927,6 +27891,10 @@ references: href: https://docs.python.org/3/library/__future__.html#future__._Feature name: _Feature uid: __future__._Feature +- fullName: _thread.LockType + href: https://docs.python.org/3/library/_thread.html#thread.LockType + name: LockType + uid: _thread.LockType - fullName: abc.ABC href: https://docs.python.org/3/library/abc.html#abc.ABC name: ABC @@ -30999,6 +30967,10 @@ references: href: https://docs.python.org/3/library/types.html#types.CodeType name: CodeType uid: types.CodeType +- fullName: types.EllipsisType + href: https://docs.python.org/3/library/types.html#types.EllipsisType + name: EllipsisType + uid: types.EllipsisType - fullName: types.GenericAlias href: https://docs.python.org/3/library/types.html#types.GenericAlias name: GenericAlias @@ -31011,6 +30983,14 @@ references: href: https://docs.python.org/3/library/types.html#types.ModuleType name: ModuleType uid: types.ModuleType +- fullName: types.NoneType + href: https://docs.python.org/3/library/types.html#types.NoneType + name: NoneType + uid: types.NoneType +- fullName: types.NotImplementedType + href: https://docs.python.org/3/library/types.html#types.NotImplementedType + name: NotImplementedType + uid: types.NotImplementedType - fullName: types.SimpleNamespace href: https://docs.python.org/3/library/types.html#types.SimpleNamespace name: SimpleNamespace @@ -31175,6 +31155,14 @@ references: href: https://docs.python.org/3/library/typing.html#typing.ParamSpec name: ParamSpec uid: typing.ParamSpec +- fullName: typing.ParamSpecArgs + href: https://docs.python.org/3/library/typing.html#typing.ParamSpecArgs + name: ParamSpecArgs + uid: typing.ParamSpecArgs +- fullName: typing.ParamSpecKwargs + href: https://docs.python.org/3/library/typing.html#typing.ParamSpecKwargs + name: ParamSpecKwargs + uid: typing.ParamSpecKwargs - fullName: typing.Pattern href: https://docs.python.org/3/library/typing.html#typing.Pattern name: Pattern @@ -31475,6 +31463,18 @@ references: href: https://docs.python.org/3/library/wave.html#wave.Wave_write name: Wave_write uid: wave.Wave_write +- fullName: weakref.CallableProxyType + href: https://docs.python.org/3/library/weakref.html#weakref.CallableProxyType + name: CallableProxyType + uid: weakref.CallableProxyType +- fullName: weakref.ProxyType + href: https://docs.python.org/3/library/weakref.html#weakref.ProxyType + name: ProxyType + uid: weakref.ProxyType +- fullName: weakref.ReferenceType + href: https://docs.python.org/3/library/weakref.html#weakref.ReferenceType + name: ReferenceType + uid: weakref.ReferenceType - fullName: weakref.WeakKeyDictionary href: https://docs.python.org/3/library/weakref.html#weakref.WeakKeyDictionary name: WeakKeyDictionary From 6a805c3ffe9f284f3569968b531d5950c8c24882 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Tue, 9 Jun 2026 18:08:01 +0000 Subject: [PATCH 03/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=611875&view=results --- xrefmap.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index af112a2f..e660b8e4 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -18851,6 +18851,14 @@ references: href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.xmlparser.SetBase name: SetBase uid: xml.parsers.expat.xmlparser.SetBase +- fullName: xml.parsers.expat.xmlparser.SetBillionLaughsAttackProtectionActivationThreshold + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.xmlparser.SetBillionLaughsAttackProtectionActivationThreshold + name: SetBillionLaughsAttackProtectionActivationThreshold + uid: xml.parsers.expat.xmlparser.SetBillionLaughsAttackProtectionActivationThreshold +- fullName: xml.parsers.expat.xmlparser.SetBillionLaughsAttackProtectionMaximumAmplification + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.xmlparser.SetBillionLaughsAttackProtectionMaximumAmplification + name: SetBillionLaughsAttackProtectionMaximumAmplification + uid: xml.parsers.expat.xmlparser.SetBillionLaughsAttackProtectionMaximumAmplification - fullName: xml.parsers.expat.xmlparser.SetParamEntityParsing href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.xmlparser.SetParamEntityParsing name: SetParamEntityParsing From fb80ca1aca8983084fea24e2ae4ddf36c5f473cc Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Wed, 10 Jun 2026 18:10:10 +0000 Subject: [PATCH 04/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=612089&view=results --- xrefmap.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xrefmap.yml b/xrefmap.yml index e660b8e4..e0ca03eb 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -23927,10 +23927,6 @@ references: href: https://docs.python.org/3/library/socket.html#socket.SO_REUSEPORT_LB name: SO_REUSEPORT_LB uid: socket.SO_REUSEPORT_LB -- fullName: socket.SocketType - href: https://docs.python.org/3/library/socket.html#socket.SocketType - name: SocketType - uid: socket.SocketType - fullName: socket.has_ipv6 href: https://docs.python.org/3/library/socket.html#socket.has_ipv6 name: has_ipv6 @@ -30483,6 +30479,10 @@ references: href: https://docs.python.org/3/library/smtplib.html#smtplib.SMTP_SSL name: SMTP_SSL uid: smtplib.SMTP_SSL +- fullName: socket.SocketType + href: https://docs.python.org/3/library/socket.html#socket.SocketType + name: SocketType + uid: socket.SocketType - fullName: socket.socket href: https://docs.python.org/3/library/socket.html#socket.socket name: socket From f1134577627278c771222a886adbb369e443cde4 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Sun, 14 Jun 2026 18:06:58 +0000 Subject: [PATCH 05/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=612596&view=results --- xrefmap.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index e0ca03eb..ac9b022c 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -11127,10 +11127,26 @@ references: href: https://docs.python.org/3/library/enum.html#enum.Flag.__and__ name: __and__ uid: enum.Flag.__and__ +- fullName: enum.Flag.__bool__ + href: https://docs.python.org/3/library/enum.html#enum.Flag.__bool__ + name: __bool__ + uid: enum.Flag.__bool__ - fullName: enum.Flag.__contains__ href: https://docs.python.org/3/library/enum.html#enum.Flag.__contains__ name: __contains__ uid: enum.Flag.__contains__ +- fullName: enum.Flag.__invert__ + href: https://docs.python.org/3/library/enum.html#enum.Flag.__invert__ + name: __invert__ + uid: enum.Flag.__invert__ +- fullName: enum.Flag.__iter__ + href: https://docs.python.org/3/library/enum.html#enum.Flag.__iter__ + name: __iter__ + uid: enum.Flag.__iter__ +- fullName: enum.Flag.__len__ + href: https://docs.python.org/3/library/enum.html#enum.Flag.__len__ + name: __len__ + uid: enum.Flag.__len__ - fullName: enum.Flag.__or__ href: https://docs.python.org/3/library/enum.html#enum.Flag.__or__ name: __or__ From 58f061c02f158407fb3d4f4bca12fc9ce63c11a1 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Thu, 18 Jun 2026 18:07:19 +0000 Subject: [PATCH 06/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=613326&view=results --- xrefmap.yml | 2964 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 2944 insertions(+), 20 deletions(-) diff --git a/xrefmap.yml b/xrefmap.yml index ac9b022c..3a43795d 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -1091,6 +1091,10 @@ references: href: https://docs.python.org/3/library/threading.html#threading.BrokenBarrierError name: BrokenBarrierError uid: threading.BrokenBarrierError +- fullName: tkinter.TclError + href: https://docs.python.org/3/library/tkinter.html#tkinter.TclError + name: TclError + uid: tkinter.TclError - fullName: tokenize.TokenError href: https://docs.python.org/3/library/tokenize.html#tokenize.TokenError name: TokenError @@ -5727,6 +5731,82 @@ references: href: https://docs.python.org/3/library/time.html#time.struct_time.tm_zone name: tm_zone uid: time.struct_time.tm_zone +- fullName: tkinter.Event.char + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.char + name: char + uid: tkinter.Event.char +- fullName: tkinter.Event.delta + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.delta + name: delta + uid: tkinter.Event.delta +- fullName: tkinter.Event.focus + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.focus + name: focus + uid: tkinter.Event.focus +- fullName: tkinter.Event.height + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.height + name: height + uid: tkinter.Event.height +- fullName: tkinter.Event.keycode + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.keycode + name: keycode + uid: tkinter.Event.keycode +- fullName: tkinter.Event.keysym + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.keysym + name: keysym + uid: tkinter.Event.keysym +- fullName: tkinter.Event.keysym_num + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.keysym_num + name: keysym_num + uid: tkinter.Event.keysym_num +- fullName: tkinter.Event.num + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.num + name: num + uid: tkinter.Event.num +- fullName: tkinter.Event.send_event + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.send_event + name: send_event + uid: tkinter.Event.send_event +- fullName: tkinter.Event.serial + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.serial + name: serial + uid: tkinter.Event.serial +- fullName: tkinter.Event.state + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.state + name: state + uid: tkinter.Event.state +- fullName: tkinter.Event.time + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.time + name: time + uid: tkinter.Event.time +- fullName: tkinter.Event.type + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.type + name: type + uid: tkinter.Event.type +- fullName: tkinter.Event.widget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.widget + name: widget + uid: tkinter.Event.widget +- fullName: tkinter.Event.width + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.width + name: width + uid: tkinter.Event.width +- fullName: tkinter.Event.x + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.x + name: x + uid: tkinter.Event.x +- fullName: tkinter.Event.x_root + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.x_root + name: x_root + uid: tkinter.Event.x_root +- fullName: tkinter.Event.y + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.y + name: y + uid: tkinter.Event.y +- fullName: tkinter.Event.y_root + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event.y_root + name: y_root + uid: tkinter.Event.y_root - fullName: tkinter.Tk.children href: https://docs.python.org/3/library/tkinter.html#tkinter.Tk.children name: children @@ -6867,14 +6947,6 @@ references: href: https://docs.python.org/3/library/_thread.html#thread.LockType.release name: release uid: _thread.LockType.release -- fullName: _tkinter.Widget.tk.createfilehandler - href: https://docs.python.org/3/library/tkinter.html#tkinter.Widget.tk.createfilehandler - name: createfilehandler - uid: _tkinter.Widget.tk.createfilehandler -- fullName: _tkinter.Widget.tk.deletefilehandler - href: https://docs.python.org/3/library/tkinter.html#tkinter.Widget.tk.deletefilehandler - name: deletefilehandler - uid: _tkinter.Widget.tk.deletefilehandler - fullName: abc.ABCMeta.__subclasshook__ href: https://docs.python.org/3/library/abc.html#abc.ABCMeta.__subclasshook__ name: __subclasshook__ @@ -16895,10 +16967,2198 @@ references: href: https://docs.python.org/3/library/timeit.html#timeit.Timer.timeit name: timeit uid: timeit.Timer.timeit +- fullName: tkinter.BaseWidget.destroy + href: https://docs.python.org/3/library/tkinter.html#tkinter.BaseWidget.destroy + name: destroy + uid: tkinter.BaseWidget.destroy +- fullName: tkinter.BooleanVar.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.BooleanVar.get + name: get + uid: tkinter.BooleanVar.get +- fullName: tkinter.BooleanVar.initialize + href: https://docs.python.org/3/library/tkinter.html#tkinter.BooleanVar.initialize + name: initialize + uid: tkinter.BooleanVar.initialize +- fullName: tkinter.BooleanVar.set + href: https://docs.python.org/3/library/tkinter.html#tkinter.BooleanVar.set + name: set + uid: tkinter.BooleanVar.set +- fullName: tkinter.Button.flash + href: https://docs.python.org/3/library/tkinter.html#tkinter.Button.flash + name: flash + uid: tkinter.Button.flash +- fullName: tkinter.Button.invoke + href: https://docs.python.org/3/library/tkinter.html#tkinter.Button.invoke + name: invoke + uid: tkinter.Button.invoke +- fullName: tkinter.Canvas.addtag + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.addtag + name: addtag + uid: tkinter.Canvas.addtag +- fullName: tkinter.Canvas.addtag_above + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.addtag_above + name: addtag_above + uid: tkinter.Canvas.addtag_above +- fullName: tkinter.Canvas.addtag_all + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.addtag_all + name: addtag_all + uid: tkinter.Canvas.addtag_all +- fullName: tkinter.Canvas.addtag_below + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.addtag_below + name: addtag_below + uid: tkinter.Canvas.addtag_below +- fullName: tkinter.Canvas.addtag_closest + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.addtag_closest + name: addtag_closest + uid: tkinter.Canvas.addtag_closest +- fullName: tkinter.Canvas.addtag_enclosed + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.addtag_enclosed + name: addtag_enclosed + uid: tkinter.Canvas.addtag_enclosed +- fullName: tkinter.Canvas.addtag_overlapping + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.addtag_overlapping + name: addtag_overlapping + uid: tkinter.Canvas.addtag_overlapping +- fullName: tkinter.Canvas.addtag_withtag + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.addtag_withtag + name: addtag_withtag + uid: tkinter.Canvas.addtag_withtag +- fullName: tkinter.Canvas.bbox + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.bbox + name: bbox + uid: tkinter.Canvas.bbox +- fullName: tkinter.Canvas.canvasx + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.canvasx + name: canvasx + uid: tkinter.Canvas.canvasx +- fullName: tkinter.Canvas.canvasy + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.canvasy + name: canvasy + uid: tkinter.Canvas.canvasy +- fullName: tkinter.Canvas.coords + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.coords + name: coords + uid: tkinter.Canvas.coords +- fullName: tkinter.Canvas.create_arc + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.create_arc + name: create_arc + uid: tkinter.Canvas.create_arc +- fullName: tkinter.Canvas.create_bitmap + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.create_bitmap + name: create_bitmap + uid: tkinter.Canvas.create_bitmap +- fullName: tkinter.Canvas.create_image + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.create_image + name: create_image + uid: tkinter.Canvas.create_image +- fullName: tkinter.Canvas.create_line + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.create_line + name: create_line + uid: tkinter.Canvas.create_line +- fullName: tkinter.Canvas.create_oval + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.create_oval + name: create_oval + uid: tkinter.Canvas.create_oval +- fullName: tkinter.Canvas.create_polygon + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.create_polygon + name: create_polygon + uid: tkinter.Canvas.create_polygon +- fullName: tkinter.Canvas.create_rectangle + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.create_rectangle + name: create_rectangle + uid: tkinter.Canvas.create_rectangle +- fullName: tkinter.Canvas.create_text + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.create_text + name: create_text + uid: tkinter.Canvas.create_text +- fullName: tkinter.Canvas.create_window + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.create_window + name: create_window + uid: tkinter.Canvas.create_window +- fullName: tkinter.Canvas.dchars + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.dchars + name: dchars + uid: tkinter.Canvas.dchars +- fullName: tkinter.Canvas.delete + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.delete + name: delete + uid: tkinter.Canvas.delete +- fullName: tkinter.Canvas.dtag + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.dtag + name: dtag + uid: tkinter.Canvas.dtag +- fullName: tkinter.Canvas.find + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.find + name: find + uid: tkinter.Canvas.find +- fullName: tkinter.Canvas.find_above + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.find_above + name: find_above + uid: tkinter.Canvas.find_above +- fullName: tkinter.Canvas.find_all + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.find_all + name: find_all + uid: tkinter.Canvas.find_all +- fullName: tkinter.Canvas.find_below + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.find_below + name: find_below + uid: tkinter.Canvas.find_below +- fullName: tkinter.Canvas.find_closest + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.find_closest + name: find_closest + uid: tkinter.Canvas.find_closest +- fullName: tkinter.Canvas.find_enclosed + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.find_enclosed + name: find_enclosed + uid: tkinter.Canvas.find_enclosed +- fullName: tkinter.Canvas.find_overlapping + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.find_overlapping + name: find_overlapping + uid: tkinter.Canvas.find_overlapping +- fullName: tkinter.Canvas.find_withtag + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.find_withtag + name: find_withtag + uid: tkinter.Canvas.find_withtag +- fullName: tkinter.Canvas.focus + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.focus + name: focus + uid: tkinter.Canvas.focus +- fullName: tkinter.Canvas.gettags + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.gettags + name: gettags + uid: tkinter.Canvas.gettags +- fullName: tkinter.Canvas.icursor + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.icursor + name: icursor + uid: tkinter.Canvas.icursor +- fullName: tkinter.Canvas.index + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.index + name: index + uid: tkinter.Canvas.index +- fullName: tkinter.Canvas.insert + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.insert + name: insert + uid: tkinter.Canvas.insert +- fullName: tkinter.Canvas.itemcget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.itemcget + name: itemcget + uid: tkinter.Canvas.itemcget +- fullName: tkinter.Canvas.itemconfig + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.itemconfig + name: itemconfig + uid: tkinter.Canvas.itemconfig +- fullName: tkinter.Canvas.itemconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.itemconfigure + name: itemconfigure + uid: tkinter.Canvas.itemconfigure +- fullName: tkinter.Canvas.lift + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.lift + name: lift + uid: tkinter.Canvas.lift +- fullName: tkinter.Canvas.lower + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.lower + name: lower + uid: tkinter.Canvas.lower +- fullName: tkinter.Canvas.move + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.move + name: move + uid: tkinter.Canvas.move +- fullName: tkinter.Canvas.moveto + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.moveto + name: moveto + uid: tkinter.Canvas.moveto +- fullName: tkinter.Canvas.postscript + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.postscript + name: postscript + uid: tkinter.Canvas.postscript +- fullName: tkinter.Canvas.scale + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.scale + name: scale + uid: tkinter.Canvas.scale +- fullName: tkinter.Canvas.scan_dragto + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.scan_dragto + name: scan_dragto + uid: tkinter.Canvas.scan_dragto +- fullName: tkinter.Canvas.scan_mark + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.scan_mark + name: scan_mark + uid: tkinter.Canvas.scan_mark +- fullName: tkinter.Canvas.select_adjust + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.select_adjust + name: select_adjust + uid: tkinter.Canvas.select_adjust +- fullName: tkinter.Canvas.select_clear + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.select_clear + name: select_clear + uid: tkinter.Canvas.select_clear +- fullName: tkinter.Canvas.select_from + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.select_from + name: select_from + uid: tkinter.Canvas.select_from +- fullName: tkinter.Canvas.select_item + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.select_item + name: select_item + uid: tkinter.Canvas.select_item +- fullName: tkinter.Canvas.select_to + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.select_to + name: select_to + uid: tkinter.Canvas.select_to +- fullName: tkinter.Canvas.tag_bind + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.tag_bind + name: tag_bind + uid: tkinter.Canvas.tag_bind +- fullName: tkinter.Canvas.tag_lower + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.tag_lower + name: tag_lower + uid: tkinter.Canvas.tag_lower +- fullName: tkinter.Canvas.tag_raise + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.tag_raise + name: tag_raise + uid: tkinter.Canvas.tag_raise +- fullName: tkinter.Canvas.tag_unbind + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.tag_unbind + name: tag_unbind + uid: tkinter.Canvas.tag_unbind +- fullName: tkinter.Canvas.tkraise + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.tkraise + name: tkraise + uid: tkinter.Canvas.tkraise +- fullName: tkinter.Canvas.type + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas.type + name: type + uid: tkinter.Canvas.type +- fullName: tkinter.Checkbutton.deselect + href: https://docs.python.org/3/library/tkinter.html#tkinter.Checkbutton.deselect + name: deselect + uid: tkinter.Checkbutton.deselect +- fullName: tkinter.Checkbutton.flash + href: https://docs.python.org/3/library/tkinter.html#tkinter.Checkbutton.flash + name: flash + uid: tkinter.Checkbutton.flash +- fullName: tkinter.Checkbutton.invoke + href: https://docs.python.org/3/library/tkinter.html#tkinter.Checkbutton.invoke + name: invoke + uid: tkinter.Checkbutton.invoke +- fullName: tkinter.Checkbutton.select + href: https://docs.python.org/3/library/tkinter.html#tkinter.Checkbutton.select + name: select + uid: tkinter.Checkbutton.select +- fullName: tkinter.Checkbutton.toggle + href: https://docs.python.org/3/library/tkinter.html#tkinter.Checkbutton.toggle + name: toggle + uid: tkinter.Checkbutton.toggle +- fullName: tkinter.DoubleVar.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.DoubleVar.get + name: get + uid: tkinter.DoubleVar.get +- fullName: tkinter.Entry.delete + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.delete + name: delete + uid: tkinter.Entry.delete +- fullName: tkinter.Entry.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.get + name: get + uid: tkinter.Entry.get +- fullName: tkinter.Entry.icursor + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.icursor + name: icursor + uid: tkinter.Entry.icursor +- fullName: tkinter.Entry.index + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.index + name: index + uid: tkinter.Entry.index +- fullName: tkinter.Entry.insert + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.insert + name: insert + uid: tkinter.Entry.insert +- fullName: tkinter.Entry.scan_dragto + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.scan_dragto + name: scan_dragto + uid: tkinter.Entry.scan_dragto +- fullName: tkinter.Entry.scan_mark + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.scan_mark + name: scan_mark + uid: tkinter.Entry.scan_mark +- fullName: tkinter.Entry.select_adjust + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.select_adjust + name: select_adjust + uid: tkinter.Entry.select_adjust +- fullName: tkinter.Entry.select_clear + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.select_clear + name: select_clear + uid: tkinter.Entry.select_clear +- fullName: tkinter.Entry.select_from + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.select_from + name: select_from + uid: tkinter.Entry.select_from +- fullName: tkinter.Entry.select_present + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.select_present + name: select_present + uid: tkinter.Entry.select_present +- fullName: tkinter.Entry.select_range + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.select_range + name: select_range + uid: tkinter.Entry.select_range +- fullName: tkinter.Entry.select_to + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.select_to + name: select_to + uid: tkinter.Entry.select_to +- fullName: tkinter.Entry.selection_adjust + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.selection_adjust + name: selection_adjust + uid: tkinter.Entry.selection_adjust +- fullName: tkinter.Entry.selection_clear + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.selection_clear + name: selection_clear + uid: tkinter.Entry.selection_clear +- fullName: tkinter.Entry.selection_from + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.selection_from + name: selection_from + uid: tkinter.Entry.selection_from +- fullName: tkinter.Entry.selection_present + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.selection_present + name: selection_present + uid: tkinter.Entry.selection_present +- fullName: tkinter.Entry.selection_range + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.selection_range + name: selection_range + uid: tkinter.Entry.selection_range +- fullName: tkinter.Entry.selection_to + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry.selection_to + name: selection_to + uid: tkinter.Entry.selection_to +- fullName: tkinter.Grid.bbox + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.bbox + name: bbox + uid: tkinter.Grid.bbox +- fullName: tkinter.Grid.columnconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.columnconfigure + name: columnconfigure + uid: tkinter.Grid.columnconfigure +- fullName: tkinter.Grid.config + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.config + name: config + uid: tkinter.Grid.config +- fullName: tkinter.Grid.configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.configure + name: configure + uid: tkinter.Grid.configure +- fullName: tkinter.Grid.forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.forget + name: forget + uid: tkinter.Grid.forget +- fullName: tkinter.Grid.grid + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid + name: grid + uid: tkinter.Grid.grid +- fullName: tkinter.Grid.grid_bbox + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid_bbox + name: grid_bbox + uid: tkinter.Grid.grid_bbox +- fullName: tkinter.Grid.grid_columnconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid_columnconfigure + name: grid_columnconfigure + uid: tkinter.Grid.grid_columnconfigure +- fullName: tkinter.Grid.grid_configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid_configure + name: grid_configure + uid: tkinter.Grid.grid_configure +- fullName: tkinter.Grid.grid_forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid_forget + name: grid_forget + uid: tkinter.Grid.grid_forget +- fullName: tkinter.Grid.grid_info + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid_info + name: grid_info + uid: tkinter.Grid.grid_info +- fullName: tkinter.Grid.grid_location + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid_location + name: grid_location + uid: tkinter.Grid.grid_location +- fullName: tkinter.Grid.grid_propagate + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid_propagate + name: grid_propagate + uid: tkinter.Grid.grid_propagate +- fullName: tkinter.Grid.grid_remove + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid_remove + name: grid_remove + uid: tkinter.Grid.grid_remove +- fullName: tkinter.Grid.grid_rowconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid_rowconfigure + name: grid_rowconfigure + uid: tkinter.Grid.grid_rowconfigure +- fullName: tkinter.Grid.grid_size + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid_size + name: grid_size + uid: tkinter.Grid.grid_size +- fullName: tkinter.Grid.grid_slaves + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.grid_slaves + name: grid_slaves + uid: tkinter.Grid.grid_slaves +- fullName: tkinter.Grid.info + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.info + name: info + uid: tkinter.Grid.info +- fullName: tkinter.Grid.location + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.location + name: location + uid: tkinter.Grid.location +- fullName: tkinter.Grid.propagate + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.propagate + name: propagate + uid: tkinter.Grid.propagate +- fullName: tkinter.Grid.rowconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.rowconfigure + name: rowconfigure + uid: tkinter.Grid.rowconfigure +- fullName: tkinter.Grid.size + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.size + name: size + uid: tkinter.Grid.size +- fullName: tkinter.Grid.slaves + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid.slaves + name: slaves + uid: tkinter.Grid.slaves +- fullName: tkinter.Image.config + href: https://docs.python.org/3/library/tkinter.html#tkinter.Image.config + name: config + uid: tkinter.Image.config +- fullName: tkinter.Image.configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Image.configure + name: configure + uid: tkinter.Image.configure +- fullName: tkinter.Image.height + href: https://docs.python.org/3/library/tkinter.html#tkinter.Image.height + name: height + uid: tkinter.Image.height +- fullName: tkinter.Image.type + href: https://docs.python.org/3/library/tkinter.html#tkinter.Image.type + name: type + uid: tkinter.Image.type +- fullName: tkinter.Image.width + href: https://docs.python.org/3/library/tkinter.html#tkinter.Image.width + name: width + uid: tkinter.Image.width +- fullName: tkinter.IntVar.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.IntVar.get + name: get + uid: tkinter.IntVar.get +- fullName: tkinter.Listbox.activate + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.activate + name: activate + uid: tkinter.Listbox.activate +- fullName: tkinter.Listbox.bbox + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.bbox + name: bbox + uid: tkinter.Listbox.bbox +- fullName: tkinter.Listbox.curselection + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.curselection + name: curselection + uid: tkinter.Listbox.curselection +- fullName: tkinter.Listbox.delete + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.delete + name: delete + uid: tkinter.Listbox.delete +- fullName: tkinter.Listbox.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.get + name: get + uid: tkinter.Listbox.get +- fullName: tkinter.Listbox.index + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.index + name: index + uid: tkinter.Listbox.index +- fullName: tkinter.Listbox.insert + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.insert + name: insert + uid: tkinter.Listbox.insert +- fullName: tkinter.Listbox.itemcget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.itemcget + name: itemcget + uid: tkinter.Listbox.itemcget +- fullName: tkinter.Listbox.itemconfig + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.itemconfig + name: itemconfig + uid: tkinter.Listbox.itemconfig +- fullName: tkinter.Listbox.itemconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.itemconfigure + name: itemconfigure + uid: tkinter.Listbox.itemconfigure +- fullName: tkinter.Listbox.nearest + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.nearest + name: nearest + uid: tkinter.Listbox.nearest +- fullName: tkinter.Listbox.scan_dragto + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.scan_dragto + name: scan_dragto + uid: tkinter.Listbox.scan_dragto +- fullName: tkinter.Listbox.scan_mark + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.scan_mark + name: scan_mark + uid: tkinter.Listbox.scan_mark +- fullName: tkinter.Listbox.see + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.see + name: see + uid: tkinter.Listbox.see +- fullName: tkinter.Listbox.select_anchor + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.select_anchor + name: select_anchor + uid: tkinter.Listbox.select_anchor +- fullName: tkinter.Listbox.select_clear + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.select_clear + name: select_clear + uid: tkinter.Listbox.select_clear +- fullName: tkinter.Listbox.select_includes + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.select_includes + name: select_includes + uid: tkinter.Listbox.select_includes +- fullName: tkinter.Listbox.select_set + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.select_set + name: select_set + uid: tkinter.Listbox.select_set +- fullName: tkinter.Listbox.selection_anchor + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.selection_anchor + name: selection_anchor + uid: tkinter.Listbox.selection_anchor +- fullName: tkinter.Listbox.selection_clear + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.selection_clear + name: selection_clear + uid: tkinter.Listbox.selection_clear +- fullName: tkinter.Listbox.selection_includes + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.selection_includes + name: selection_includes + uid: tkinter.Listbox.selection_includes +- fullName: tkinter.Listbox.selection_set + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.selection_set + name: selection_set + uid: tkinter.Listbox.selection_set +- fullName: tkinter.Listbox.size + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox.size + name: size + uid: tkinter.Listbox.size +- fullName: tkinter.Menu.activate + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.activate + name: activate + uid: tkinter.Menu.activate +- fullName: tkinter.Menu.add + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.add + name: add + uid: tkinter.Menu.add +- fullName: tkinter.Menu.add_cascade + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.add_cascade + name: add_cascade + uid: tkinter.Menu.add_cascade +- fullName: tkinter.Menu.add_checkbutton + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.add_checkbutton + name: add_checkbutton + uid: tkinter.Menu.add_checkbutton +- fullName: tkinter.Menu.add_command + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.add_command + name: add_command + uid: tkinter.Menu.add_command +- fullName: tkinter.Menu.add_radiobutton + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.add_radiobutton + name: add_radiobutton + uid: tkinter.Menu.add_radiobutton +- fullName: tkinter.Menu.add_separator + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.add_separator + name: add_separator + uid: tkinter.Menu.add_separator +- fullName: tkinter.Menu.delete + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.delete + name: delete + uid: tkinter.Menu.delete +- fullName: tkinter.Menu.entrycget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.entrycget + name: entrycget + uid: tkinter.Menu.entrycget +- fullName: tkinter.Menu.entryconfig + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.entryconfig + name: entryconfig + uid: tkinter.Menu.entryconfig +- fullName: tkinter.Menu.entryconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.entryconfigure + name: entryconfigure + uid: tkinter.Menu.entryconfigure +- fullName: tkinter.Menu.index + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.index + name: index + uid: tkinter.Menu.index +- fullName: tkinter.Menu.insert + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.insert + name: insert + uid: tkinter.Menu.insert +- fullName: tkinter.Menu.insert_cascade + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.insert_cascade + name: insert_cascade + uid: tkinter.Menu.insert_cascade +- fullName: tkinter.Menu.insert_checkbutton + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.insert_checkbutton + name: insert_checkbutton + uid: tkinter.Menu.insert_checkbutton +- fullName: tkinter.Menu.insert_command + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.insert_command + name: insert_command + uid: tkinter.Menu.insert_command +- fullName: tkinter.Menu.insert_radiobutton + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.insert_radiobutton + name: insert_radiobutton + uid: tkinter.Menu.insert_radiobutton +- fullName: tkinter.Menu.insert_separator + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.insert_separator + name: insert_separator + uid: tkinter.Menu.insert_separator +- fullName: tkinter.Menu.invoke + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.invoke + name: invoke + uid: tkinter.Menu.invoke +- fullName: tkinter.Menu.post + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.post + name: post + uid: tkinter.Menu.post +- fullName: tkinter.Menu.tk_popup + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.tk_popup + name: tk_popup + uid: tkinter.Menu.tk_popup +- fullName: tkinter.Menu.type + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.type + name: type + uid: tkinter.Menu.type +- fullName: tkinter.Menu.unpost + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.unpost + name: unpost + uid: tkinter.Menu.unpost +- fullName: tkinter.Menu.xposition + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.xposition + name: xposition + uid: tkinter.Menu.xposition +- fullName: tkinter.Menu.yposition + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu.yposition + name: yposition + uid: tkinter.Menu.yposition +- fullName: tkinter.Misc.after + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.after + name: after + uid: tkinter.Misc.after +- fullName: tkinter.Misc.after_cancel + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.after_cancel + name: after_cancel + uid: tkinter.Misc.after_cancel +- fullName: tkinter.Misc.after_idle + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.after_idle + name: after_idle + uid: tkinter.Misc.after_idle +- fullName: tkinter.Misc.after_info + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.after_info + name: after_info + uid: tkinter.Misc.after_info +- fullName: tkinter.Misc.anchor + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.anchor + name: anchor + uid: tkinter.Misc.anchor +- fullName: tkinter.Misc.bbox + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.bbox + name: bbox + uid: tkinter.Misc.bbox +- fullName: tkinter.Misc.bell + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.bell + name: bell + uid: tkinter.Misc.bell +- fullName: tkinter.Misc.bind + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.bind + name: bind + uid: tkinter.Misc.bind +- fullName: tkinter.Misc.bind_all + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.bind_all + name: bind_all + uid: tkinter.Misc.bind_all +- fullName: tkinter.Misc.bind_class + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.bind_class + name: bind_class + uid: tkinter.Misc.bind_class +- fullName: tkinter.Misc.bindtags + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.bindtags + name: bindtags + uid: tkinter.Misc.bindtags +- fullName: tkinter.Misc.busy + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.busy + name: busy + uid: tkinter.Misc.busy +- fullName: tkinter.Misc.busy_cget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.busy_cget + name: busy_cget + uid: tkinter.Misc.busy_cget +- fullName: tkinter.Misc.busy_config + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.busy_config + name: busy_config + uid: tkinter.Misc.busy_config +- fullName: tkinter.Misc.busy_configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.busy_configure + name: busy_configure + uid: tkinter.Misc.busy_configure +- fullName: tkinter.Misc.busy_current + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.busy_current + name: busy_current + uid: tkinter.Misc.busy_current +- fullName: tkinter.Misc.busy_forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.busy_forget + name: busy_forget + uid: tkinter.Misc.busy_forget +- fullName: tkinter.Misc.busy_hold + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.busy_hold + name: busy_hold + uid: tkinter.Misc.busy_hold +- fullName: tkinter.Misc.busy_status + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.busy_status + name: busy_status + uid: tkinter.Misc.busy_status +- fullName: tkinter.Misc.cget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.cget + name: cget + uid: tkinter.Misc.cget +- fullName: tkinter.Misc.clipboard_append + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.clipboard_append + name: clipboard_append + uid: tkinter.Misc.clipboard_append +- fullName: tkinter.Misc.clipboard_clear + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.clipboard_clear + name: clipboard_clear + uid: tkinter.Misc.clipboard_clear +- fullName: tkinter.Misc.clipboard_get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.clipboard_get + name: clipboard_get + uid: tkinter.Misc.clipboard_get +- fullName: tkinter.Misc.columnconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.columnconfigure + name: columnconfigure + uid: tkinter.Misc.columnconfigure +- fullName: tkinter.Misc.config + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.config + name: config + uid: tkinter.Misc.config +- fullName: tkinter.Misc.configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.configure + name: configure + uid: tkinter.Misc.configure +- fullName: tkinter.Misc.deletecommand + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.deletecommand + name: deletecommand + uid: tkinter.Misc.deletecommand +- fullName: tkinter.Misc.destroy + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.destroy + name: destroy + uid: tkinter.Misc.destroy +- fullName: tkinter.Misc.event_add + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.event_add + name: event_add + uid: tkinter.Misc.event_add +- fullName: tkinter.Misc.event_delete + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.event_delete + name: event_delete + uid: tkinter.Misc.event_delete +- fullName: tkinter.Misc.event_generate + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.event_generate + name: event_generate + uid: tkinter.Misc.event_generate +- fullName: tkinter.Misc.event_info + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.event_info + name: event_info + uid: tkinter.Misc.event_info +- fullName: tkinter.Misc.focus + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.focus + name: focus + uid: tkinter.Misc.focus +- fullName: tkinter.Misc.focus_displayof + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.focus_displayof + name: focus_displayof + uid: tkinter.Misc.focus_displayof +- fullName: tkinter.Misc.focus_force + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.focus_force + name: focus_force + uid: tkinter.Misc.focus_force +- fullName: tkinter.Misc.focus_get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.focus_get + name: focus_get + uid: tkinter.Misc.focus_get +- fullName: tkinter.Misc.focus_lastfor + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.focus_lastfor + name: focus_lastfor + uid: tkinter.Misc.focus_lastfor +- fullName: tkinter.Misc.focus_set + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.focus_set + name: focus_set + uid: tkinter.Misc.focus_set +- fullName: tkinter.Misc.getboolean + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.getboolean + name: getboolean + uid: tkinter.Misc.getboolean +- fullName: tkinter.Misc.getdouble + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.getdouble + name: getdouble + uid: tkinter.Misc.getdouble +- fullName: tkinter.Misc.getint + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.getint + name: getint + uid: tkinter.Misc.getint +- fullName: tkinter.Misc.getvar + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.getvar + name: getvar + uid: tkinter.Misc.getvar +- fullName: tkinter.Misc.grab_current + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grab_current + name: grab_current + uid: tkinter.Misc.grab_current +- fullName: tkinter.Misc.grab_release + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grab_release + name: grab_release + uid: tkinter.Misc.grab_release +- fullName: tkinter.Misc.grab_set + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grab_set + name: grab_set + uid: tkinter.Misc.grab_set +- fullName: tkinter.Misc.grab_set_global + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grab_set_global + name: grab_set_global + uid: tkinter.Misc.grab_set_global +- fullName: tkinter.Misc.grab_status + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grab_status + name: grab_status + uid: tkinter.Misc.grab_status +- fullName: tkinter.Misc.grid_anchor + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grid_anchor + name: grid_anchor + uid: tkinter.Misc.grid_anchor +- fullName: tkinter.Misc.grid_bbox + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grid_bbox + name: grid_bbox + uid: tkinter.Misc.grid_bbox +- fullName: tkinter.Misc.grid_columnconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grid_columnconfigure + name: grid_columnconfigure + uid: tkinter.Misc.grid_columnconfigure +- fullName: tkinter.Misc.grid_location + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grid_location + name: grid_location + uid: tkinter.Misc.grid_location +- fullName: tkinter.Misc.grid_propagate + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grid_propagate + name: grid_propagate + uid: tkinter.Misc.grid_propagate +- fullName: tkinter.Misc.grid_rowconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grid_rowconfigure + name: grid_rowconfigure + uid: tkinter.Misc.grid_rowconfigure +- fullName: tkinter.Misc.grid_size + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grid_size + name: grid_size + uid: tkinter.Misc.grid_size +- fullName: tkinter.Misc.grid_slaves + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.grid_slaves + name: grid_slaves + uid: tkinter.Misc.grid_slaves +- fullName: tkinter.Misc.image_names + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.image_names + name: image_names + uid: tkinter.Misc.image_names +- fullName: tkinter.Misc.image_types + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.image_types + name: image_types + uid: tkinter.Misc.image_types +- fullName: tkinter.Misc.info_patchlevel + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.info_patchlevel + name: info_patchlevel + uid: tkinter.Misc.info_patchlevel +- fullName: tkinter.Misc.keys + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.keys + name: keys + uid: tkinter.Misc.keys +- fullName: tkinter.Misc.lift + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.lift + name: lift + uid: tkinter.Misc.lift +- fullName: tkinter.Misc.lower + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.lower + name: lower + uid: tkinter.Misc.lower +- fullName: tkinter.Misc.mainloop + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.mainloop + name: mainloop + uid: tkinter.Misc.mainloop +- fullName: tkinter.Misc.nametowidget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.nametowidget + name: nametowidget + uid: tkinter.Misc.nametowidget +- fullName: tkinter.Misc.option_add + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.option_add + name: option_add + uid: tkinter.Misc.option_add +- fullName: tkinter.Misc.option_clear + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.option_clear + name: option_clear + uid: tkinter.Misc.option_clear +- fullName: tkinter.Misc.option_get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.option_get + name: option_get + uid: tkinter.Misc.option_get +- fullName: tkinter.Misc.option_readfile + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.option_readfile + name: option_readfile + uid: tkinter.Misc.option_readfile +- fullName: tkinter.Misc.pack_propagate + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.pack_propagate + name: pack_propagate + uid: tkinter.Misc.pack_propagate +- fullName: tkinter.Misc.pack_slaves + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.pack_slaves + name: pack_slaves + uid: tkinter.Misc.pack_slaves +- fullName: tkinter.Misc.place_slaves + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.place_slaves + name: place_slaves + uid: tkinter.Misc.place_slaves +- fullName: tkinter.Misc.propagate + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.propagate + name: propagate + uid: tkinter.Misc.propagate +- fullName: tkinter.Misc.quit + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.quit + name: quit + uid: tkinter.Misc.quit +- fullName: tkinter.Misc.register + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.register + name: register + uid: tkinter.Misc.register +- fullName: tkinter.Misc.rowconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.rowconfigure + name: rowconfigure + uid: tkinter.Misc.rowconfigure +- fullName: tkinter.Misc.selection_clear + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.selection_clear + name: selection_clear + uid: tkinter.Misc.selection_clear +- fullName: tkinter.Misc.selection_get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.selection_get + name: selection_get + uid: tkinter.Misc.selection_get +- fullName: tkinter.Misc.selection_handle + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.selection_handle + name: selection_handle + uid: tkinter.Misc.selection_handle +- fullName: tkinter.Misc.selection_own + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.selection_own + name: selection_own + uid: tkinter.Misc.selection_own +- fullName: tkinter.Misc.selection_own_get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.selection_own_get + name: selection_own_get + uid: tkinter.Misc.selection_own_get +- fullName: tkinter.Misc.send + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.send + name: send + uid: tkinter.Misc.send +- fullName: tkinter.Misc.setvar + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.setvar + name: setvar + uid: tkinter.Misc.setvar +- fullName: tkinter.Misc.size + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.size + name: size + uid: tkinter.Misc.size +- fullName: tkinter.Misc.slaves + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.slaves + name: slaves + uid: tkinter.Misc.slaves +- fullName: tkinter.Misc.tk_bisque + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_bisque + name: tk_bisque + uid: tkinter.Misc.tk_bisque +- fullName: tkinter.Misc.tk_busy + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_busy + name: tk_busy + uid: tkinter.Misc.tk_busy +- fullName: tkinter.Misc.tk_busy_cget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_busy_cget + name: tk_busy_cget + uid: tkinter.Misc.tk_busy_cget +- fullName: tkinter.Misc.tk_busy_config + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_busy_config + name: tk_busy_config + uid: tkinter.Misc.tk_busy_config +- fullName: tkinter.Misc.tk_busy_configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_busy_configure + name: tk_busy_configure + uid: tkinter.Misc.tk_busy_configure +- fullName: tkinter.Misc.tk_busy_current + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_busy_current + name: tk_busy_current + uid: tkinter.Misc.tk_busy_current +- fullName: tkinter.Misc.tk_busy_forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_busy_forget + name: tk_busy_forget + uid: tkinter.Misc.tk_busy_forget +- fullName: tkinter.Misc.tk_busy_hold + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_busy_hold + name: tk_busy_hold + uid: tkinter.Misc.tk_busy_hold +- fullName: tkinter.Misc.tk_busy_status + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_busy_status + name: tk_busy_status + uid: tkinter.Misc.tk_busy_status +- fullName: tkinter.Misc.tk_focusFollowsMouse + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_focusFollowsMouse + name: tk_focusFollowsMouse + uid: tkinter.Misc.tk_focusFollowsMouse +- fullName: tkinter.Misc.tk_focusNext + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_focusNext + name: tk_focusNext + uid: tkinter.Misc.tk_focusNext +- fullName: tkinter.Misc.tk_focusPrev + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_focusPrev + name: tk_focusPrev + uid: tkinter.Misc.tk_focusPrev +- fullName: tkinter.Misc.tk_setPalette + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_setPalette + name: tk_setPalette + uid: tkinter.Misc.tk_setPalette +- fullName: tkinter.Misc.tk_strictMotif + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tk_strictMotif + name: tk_strictMotif + uid: tkinter.Misc.tk_strictMotif +- fullName: tkinter.Misc.tkraise + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.tkraise + name: tkraise + uid: tkinter.Misc.tkraise +- fullName: tkinter.Misc.unbind + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.unbind + name: unbind + uid: tkinter.Misc.unbind +- fullName: tkinter.Misc.unbind_all + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.unbind_all + name: unbind_all + uid: tkinter.Misc.unbind_all +- fullName: tkinter.Misc.unbind_class + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.unbind_class + name: unbind_class + uid: tkinter.Misc.unbind_class +- fullName: tkinter.Misc.update + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.update + name: update + uid: tkinter.Misc.update +- fullName: tkinter.Misc.update_idletasks + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.update_idletasks + name: update_idletasks + uid: tkinter.Misc.update_idletasks +- fullName: tkinter.Misc.wait_variable + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.wait_variable + name: wait_variable + uid: tkinter.Misc.wait_variable +- fullName: tkinter.Misc.wait_visibility + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.wait_visibility + name: wait_visibility + uid: tkinter.Misc.wait_visibility +- fullName: tkinter.Misc.wait_window + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.wait_window + name: wait_window + uid: tkinter.Misc.wait_window +- fullName: tkinter.Misc.waitvar + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.waitvar + name: waitvar + uid: tkinter.Misc.waitvar +- fullName: tkinter.Misc.winfo_atom + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_atom + name: winfo_atom + uid: tkinter.Misc.winfo_atom +- fullName: tkinter.Misc.winfo_atomname + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_atomname + name: winfo_atomname + uid: tkinter.Misc.winfo_atomname +- fullName: tkinter.Misc.winfo_cells + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_cells + name: winfo_cells + uid: tkinter.Misc.winfo_cells +- fullName: tkinter.Misc.winfo_children + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_children + name: winfo_children + uid: tkinter.Misc.winfo_children +- fullName: tkinter.Misc.winfo_class + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_class + name: winfo_class + uid: tkinter.Misc.winfo_class +- fullName: tkinter.Misc.winfo_colormapfull + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_colormapfull + name: winfo_colormapfull + uid: tkinter.Misc.winfo_colormapfull +- fullName: tkinter.Misc.winfo_containing + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_containing + name: winfo_containing + uid: tkinter.Misc.winfo_containing +- fullName: tkinter.Misc.winfo_depth + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_depth + name: winfo_depth + uid: tkinter.Misc.winfo_depth +- fullName: tkinter.Misc.winfo_exists + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_exists + name: winfo_exists + uid: tkinter.Misc.winfo_exists +- fullName: tkinter.Misc.winfo_fpixels + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_fpixels + name: winfo_fpixels + uid: tkinter.Misc.winfo_fpixels +- fullName: tkinter.Misc.winfo_geometry + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_geometry + name: winfo_geometry + uid: tkinter.Misc.winfo_geometry +- fullName: tkinter.Misc.winfo_height + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_height + name: winfo_height + uid: tkinter.Misc.winfo_height +- fullName: tkinter.Misc.winfo_id + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_id + name: winfo_id + uid: tkinter.Misc.winfo_id +- fullName: tkinter.Misc.winfo_interps + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_interps + name: winfo_interps + uid: tkinter.Misc.winfo_interps +- fullName: tkinter.Misc.winfo_ismapped + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_ismapped + name: winfo_ismapped + uid: tkinter.Misc.winfo_ismapped +- fullName: tkinter.Misc.winfo_manager + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_manager + name: winfo_manager + uid: tkinter.Misc.winfo_manager +- fullName: tkinter.Misc.winfo_name + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_name + name: winfo_name + uid: tkinter.Misc.winfo_name +- fullName: tkinter.Misc.winfo_parent + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_parent + name: winfo_parent + uid: tkinter.Misc.winfo_parent +- fullName: tkinter.Misc.winfo_pathname + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_pathname + name: winfo_pathname + uid: tkinter.Misc.winfo_pathname +- fullName: tkinter.Misc.winfo_pixels + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_pixels + name: winfo_pixels + uid: tkinter.Misc.winfo_pixels +- fullName: tkinter.Misc.winfo_pointerx + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_pointerx + name: winfo_pointerx + uid: tkinter.Misc.winfo_pointerx +- fullName: tkinter.Misc.winfo_pointerxy + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_pointerxy + name: winfo_pointerxy + uid: tkinter.Misc.winfo_pointerxy +- fullName: tkinter.Misc.winfo_pointery + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_pointery + name: winfo_pointery + uid: tkinter.Misc.winfo_pointery +- fullName: tkinter.Misc.winfo_reqheight + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_reqheight + name: winfo_reqheight + uid: tkinter.Misc.winfo_reqheight +- fullName: tkinter.Misc.winfo_reqwidth + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_reqwidth + name: winfo_reqwidth + uid: tkinter.Misc.winfo_reqwidth +- fullName: tkinter.Misc.winfo_rgb + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_rgb + name: winfo_rgb + uid: tkinter.Misc.winfo_rgb +- fullName: tkinter.Misc.winfo_rootx + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_rootx + name: winfo_rootx + uid: tkinter.Misc.winfo_rootx +- fullName: tkinter.Misc.winfo_rooty + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_rooty + name: winfo_rooty + uid: tkinter.Misc.winfo_rooty +- fullName: tkinter.Misc.winfo_screen + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_screen + name: winfo_screen + uid: tkinter.Misc.winfo_screen +- fullName: tkinter.Misc.winfo_screencells + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_screencells + name: winfo_screencells + uid: tkinter.Misc.winfo_screencells +- fullName: tkinter.Misc.winfo_screendepth + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_screendepth + name: winfo_screendepth + uid: tkinter.Misc.winfo_screendepth +- fullName: tkinter.Misc.winfo_screenheight + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_screenheight + name: winfo_screenheight + uid: tkinter.Misc.winfo_screenheight +- fullName: tkinter.Misc.winfo_screenmmheight + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_screenmmheight + name: winfo_screenmmheight + uid: tkinter.Misc.winfo_screenmmheight +- fullName: tkinter.Misc.winfo_screenmmwidth + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_screenmmwidth + name: winfo_screenmmwidth + uid: tkinter.Misc.winfo_screenmmwidth +- fullName: tkinter.Misc.winfo_screenvisual + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_screenvisual + name: winfo_screenvisual + uid: tkinter.Misc.winfo_screenvisual +- fullName: tkinter.Misc.winfo_screenwidth + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_screenwidth + name: winfo_screenwidth + uid: tkinter.Misc.winfo_screenwidth +- fullName: tkinter.Misc.winfo_server + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_server + name: winfo_server + uid: tkinter.Misc.winfo_server +- fullName: tkinter.Misc.winfo_toplevel + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_toplevel + name: winfo_toplevel + uid: tkinter.Misc.winfo_toplevel +- fullName: tkinter.Misc.winfo_viewable + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_viewable + name: winfo_viewable + uid: tkinter.Misc.winfo_viewable +- fullName: tkinter.Misc.winfo_visual + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_visual + name: winfo_visual + uid: tkinter.Misc.winfo_visual +- fullName: tkinter.Misc.winfo_visualid + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_visualid + name: winfo_visualid + uid: tkinter.Misc.winfo_visualid +- fullName: tkinter.Misc.winfo_visualsavailable + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_visualsavailable + name: winfo_visualsavailable + uid: tkinter.Misc.winfo_visualsavailable +- fullName: tkinter.Misc.winfo_vrootheight + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_vrootheight + name: winfo_vrootheight + uid: tkinter.Misc.winfo_vrootheight +- fullName: tkinter.Misc.winfo_vrootwidth + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_vrootwidth + name: winfo_vrootwidth + uid: tkinter.Misc.winfo_vrootwidth +- fullName: tkinter.Misc.winfo_vrootx + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_vrootx + name: winfo_vrootx + uid: tkinter.Misc.winfo_vrootx +- fullName: tkinter.Misc.winfo_vrooty + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_vrooty + name: winfo_vrooty + uid: tkinter.Misc.winfo_vrooty +- fullName: tkinter.Misc.winfo_width + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_width + name: winfo_width + uid: tkinter.Misc.winfo_width +- fullName: tkinter.Misc.winfo_x + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_x + name: winfo_x + uid: tkinter.Misc.winfo_x +- fullName: tkinter.Misc.winfo_y + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc.winfo_y + name: winfo_y + uid: tkinter.Misc.winfo_y +- fullName: tkinter.OptionMenu.destroy + href: https://docs.python.org/3/library/tkinter.html#tkinter.OptionMenu.destroy + name: destroy + uid: tkinter.OptionMenu.destroy +- fullName: tkinter.Pack.config + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.config + name: config + uid: tkinter.Pack.config +- fullName: tkinter.Pack.configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.configure + name: configure + uid: tkinter.Pack.configure +- fullName: tkinter.Pack.forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.forget + name: forget + uid: tkinter.Pack.forget +- fullName: tkinter.Pack.info + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.info + name: info + uid: tkinter.Pack.info +- fullName: tkinter.Pack.pack + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.pack + name: pack + uid: tkinter.Pack.pack +- fullName: tkinter.Pack.pack_configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.pack_configure + name: pack_configure + uid: tkinter.Pack.pack_configure +- fullName: tkinter.Pack.pack_forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.pack_forget + name: pack_forget + uid: tkinter.Pack.pack_forget +- fullName: tkinter.Pack.pack_info + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.pack_info + name: pack_info + uid: tkinter.Pack.pack_info +- fullName: tkinter.Pack.pack_propagate + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.pack_propagate + name: pack_propagate + uid: tkinter.Pack.pack_propagate +- fullName: tkinter.Pack.pack_slaves + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.pack_slaves + name: pack_slaves + uid: tkinter.Pack.pack_slaves +- fullName: tkinter.Pack.propagate + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.propagate + name: propagate + uid: tkinter.Pack.propagate +- fullName: tkinter.Pack.slaves + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack.slaves + name: slaves + uid: tkinter.Pack.slaves +- fullName: tkinter.PanedWindow.add + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.add + name: add + uid: tkinter.PanedWindow.add +- fullName: tkinter.PanedWindow.forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.forget + name: forget + uid: tkinter.PanedWindow.forget +- fullName: tkinter.PanedWindow.identify + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.identify + name: identify + uid: tkinter.PanedWindow.identify +- fullName: tkinter.PanedWindow.panecget + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.panecget + name: panecget + uid: tkinter.PanedWindow.panecget +- fullName: tkinter.PanedWindow.paneconfig + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.paneconfig + name: paneconfig + uid: tkinter.PanedWindow.paneconfig +- fullName: tkinter.PanedWindow.paneconfigure + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.paneconfigure + name: paneconfigure + uid: tkinter.PanedWindow.paneconfigure +- fullName: tkinter.PanedWindow.panes + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.panes + name: panes + uid: tkinter.PanedWindow.panes +- fullName: tkinter.PanedWindow.proxy + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.proxy + name: proxy + uid: tkinter.PanedWindow.proxy +- fullName: tkinter.PanedWindow.proxy_coord + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.proxy_coord + name: proxy_coord + uid: tkinter.PanedWindow.proxy_coord +- fullName: tkinter.PanedWindow.proxy_forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.proxy_forget + name: proxy_forget + uid: tkinter.PanedWindow.proxy_forget +- fullName: tkinter.PanedWindow.proxy_place + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.proxy_place + name: proxy_place + uid: tkinter.PanedWindow.proxy_place +- fullName: tkinter.PanedWindow.remove + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.remove + name: remove + uid: tkinter.PanedWindow.remove +- fullName: tkinter.PanedWindow.sash + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.sash + name: sash + uid: tkinter.PanedWindow.sash +- fullName: tkinter.PanedWindow.sash_coord + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.sash_coord + name: sash_coord + uid: tkinter.PanedWindow.sash_coord +- fullName: tkinter.PanedWindow.sash_mark + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.sash_mark + name: sash_mark + uid: tkinter.PanedWindow.sash_mark +- fullName: tkinter.PanedWindow.sash_place + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow.sash_place + name: sash_place + uid: tkinter.PanedWindow.sash_place +- fullName: tkinter.PhotoImage.blank + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.blank + name: blank + uid: tkinter.PhotoImage.blank +- fullName: tkinter.PhotoImage.cget + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.cget + name: cget + uid: tkinter.PhotoImage.cget +- fullName: tkinter.PhotoImage.copy + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.copy + name: copy + uid: tkinter.PhotoImage.copy +- fullName: tkinter.PhotoImage.copy_replace + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.copy_replace + name: copy_replace + uid: tkinter.PhotoImage.copy_replace +- fullName: tkinter.PhotoImage.data + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.data + name: data + uid: tkinter.PhotoImage.data +- fullName: tkinter.PhotoImage.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.get + name: get + uid: tkinter.PhotoImage.get +- fullName: tkinter.PhotoImage.put + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.put + name: put + uid: tkinter.PhotoImage.put +- fullName: tkinter.PhotoImage.read + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.read + name: read + uid: tkinter.PhotoImage.read +- fullName: tkinter.PhotoImage.subsample + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.subsample + name: subsample + uid: tkinter.PhotoImage.subsample +- fullName: tkinter.PhotoImage.transparency_get + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.transparency_get + name: transparency_get + uid: tkinter.PhotoImage.transparency_get +- fullName: tkinter.PhotoImage.transparency_set + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.transparency_set + name: transparency_set + uid: tkinter.PhotoImage.transparency_set +- fullName: tkinter.PhotoImage.write + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.write + name: write + uid: tkinter.PhotoImage.write +- fullName: tkinter.PhotoImage.zoom + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage.zoom + name: zoom + uid: tkinter.PhotoImage.zoom +- fullName: tkinter.Place.config + href: https://docs.python.org/3/library/tkinter.html#tkinter.Place.config + name: config + uid: tkinter.Place.config +- fullName: tkinter.Place.configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Place.configure + name: configure + uid: tkinter.Place.configure +- fullName: tkinter.Place.forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Place.forget + name: forget + uid: tkinter.Place.forget +- fullName: tkinter.Place.info + href: https://docs.python.org/3/library/tkinter.html#tkinter.Place.info + name: info + uid: tkinter.Place.info +- fullName: tkinter.Place.place + href: https://docs.python.org/3/library/tkinter.html#tkinter.Place.place + name: place + uid: tkinter.Place.place +- fullName: tkinter.Place.place_configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Place.place_configure + name: place_configure + uid: tkinter.Place.place_configure +- fullName: tkinter.Place.place_forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Place.place_forget + name: place_forget + uid: tkinter.Place.place_forget +- fullName: tkinter.Place.place_info + href: https://docs.python.org/3/library/tkinter.html#tkinter.Place.place_info + name: place_info + uid: tkinter.Place.place_info +- fullName: tkinter.Place.place_slaves + href: https://docs.python.org/3/library/tkinter.html#tkinter.Place.place_slaves + name: place_slaves + uid: tkinter.Place.place_slaves +- fullName: tkinter.Place.slaves + href: https://docs.python.org/3/library/tkinter.html#tkinter.Place.slaves + name: slaves + uid: tkinter.Place.slaves +- fullName: tkinter.Radiobutton.deselect + href: https://docs.python.org/3/library/tkinter.html#tkinter.Radiobutton.deselect + name: deselect + uid: tkinter.Radiobutton.deselect +- fullName: tkinter.Radiobutton.flash + href: https://docs.python.org/3/library/tkinter.html#tkinter.Radiobutton.flash + name: flash + uid: tkinter.Radiobutton.flash +- fullName: tkinter.Radiobutton.invoke + href: https://docs.python.org/3/library/tkinter.html#tkinter.Radiobutton.invoke + name: invoke + uid: tkinter.Radiobutton.invoke +- fullName: tkinter.Radiobutton.select + href: https://docs.python.org/3/library/tkinter.html#tkinter.Radiobutton.select + name: select + uid: tkinter.Radiobutton.select +- fullName: tkinter.Scale.coords + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scale.coords + name: coords + uid: tkinter.Scale.coords +- fullName: tkinter.Scale.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scale.get + name: get + uid: tkinter.Scale.get +- fullName: tkinter.Scale.identify + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scale.identify + name: identify + uid: tkinter.Scale.identify +- fullName: tkinter.Scale.set + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scale.set + name: set + uid: tkinter.Scale.set +- fullName: tkinter.Scrollbar.activate + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scrollbar.activate + name: activate + uid: tkinter.Scrollbar.activate +- fullName: tkinter.Scrollbar.delta + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scrollbar.delta + name: delta + uid: tkinter.Scrollbar.delta +- fullName: tkinter.Scrollbar.fraction + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scrollbar.fraction + name: fraction + uid: tkinter.Scrollbar.fraction +- fullName: tkinter.Scrollbar.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scrollbar.get + name: get + uid: tkinter.Scrollbar.get +- fullName: tkinter.Scrollbar.identify + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scrollbar.identify + name: identify + uid: tkinter.Scrollbar.identify +- fullName: tkinter.Scrollbar.set + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scrollbar.set + name: set + uid: tkinter.Scrollbar.set +- fullName: tkinter.Spinbox.bbox + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.bbox + name: bbox + uid: tkinter.Spinbox.bbox +- fullName: tkinter.Spinbox.delete + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.delete + name: delete + uid: tkinter.Spinbox.delete +- fullName: tkinter.Spinbox.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.get + name: get + uid: tkinter.Spinbox.get +- fullName: tkinter.Spinbox.icursor + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.icursor + name: icursor + uid: tkinter.Spinbox.icursor +- fullName: tkinter.Spinbox.identify + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.identify + name: identify + uid: tkinter.Spinbox.identify +- fullName: tkinter.Spinbox.index + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.index + name: index + uid: tkinter.Spinbox.index +- fullName: tkinter.Spinbox.insert + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.insert + name: insert + uid: tkinter.Spinbox.insert +- fullName: tkinter.Spinbox.invoke + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.invoke + name: invoke + uid: tkinter.Spinbox.invoke +- fullName: tkinter.Spinbox.scan + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.scan + name: scan + uid: tkinter.Spinbox.scan +- fullName: tkinter.Spinbox.scan_dragto + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.scan_dragto + name: scan_dragto + uid: tkinter.Spinbox.scan_dragto +- fullName: tkinter.Spinbox.scan_mark + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.scan_mark + name: scan_mark + uid: tkinter.Spinbox.scan_mark +- fullName: tkinter.Spinbox.selection + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.selection + name: selection + uid: tkinter.Spinbox.selection +- fullName: tkinter.Spinbox.selection_adjust + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.selection_adjust + name: selection_adjust + uid: tkinter.Spinbox.selection_adjust +- fullName: tkinter.Spinbox.selection_clear + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.selection_clear + name: selection_clear + uid: tkinter.Spinbox.selection_clear +- fullName: tkinter.Spinbox.selection_element + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.selection_element + name: selection_element + uid: tkinter.Spinbox.selection_element +- fullName: tkinter.Spinbox.selection_from + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.selection_from + name: selection_from + uid: tkinter.Spinbox.selection_from +- fullName: tkinter.Spinbox.selection_present + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.selection_present + name: selection_present + uid: tkinter.Spinbox.selection_present +- fullName: tkinter.Spinbox.selection_range + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.selection_range + name: selection_range + uid: tkinter.Spinbox.selection_range +- fullName: tkinter.Spinbox.selection_to + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox.selection_to + name: selection_to + uid: tkinter.Spinbox.selection_to +- fullName: tkinter.StringVar.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.StringVar.get + name: get + uid: tkinter.StringVar.get +- fullName: tkinter.Text.bbox + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.bbox + name: bbox + uid: tkinter.Text.bbox +- fullName: tkinter.Text.compare + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.compare + name: compare + uid: tkinter.Text.compare +- fullName: tkinter.Text.count + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.count + name: count + uid: tkinter.Text.count +- fullName: tkinter.Text.debug + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.debug + name: debug + uid: tkinter.Text.debug +- fullName: tkinter.Text.delete + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.delete + name: delete + uid: tkinter.Text.delete +- fullName: tkinter.Text.dlineinfo + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.dlineinfo + name: dlineinfo + uid: tkinter.Text.dlineinfo +- fullName: tkinter.Text.dump + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.dump + name: dump + uid: tkinter.Text.dump +- fullName: tkinter.Text.edit + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.edit + name: edit + uid: tkinter.Text.edit +- fullName: tkinter.Text.edit_modified + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.edit_modified + name: edit_modified + uid: tkinter.Text.edit_modified +- fullName: tkinter.Text.edit_redo + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.edit_redo + name: edit_redo + uid: tkinter.Text.edit_redo +- fullName: tkinter.Text.edit_reset + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.edit_reset + name: edit_reset + uid: tkinter.Text.edit_reset +- fullName: tkinter.Text.edit_separator + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.edit_separator + name: edit_separator + uid: tkinter.Text.edit_separator +- fullName: tkinter.Text.edit_undo + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.edit_undo + name: edit_undo + uid: tkinter.Text.edit_undo +- fullName: tkinter.Text.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.get + name: get + uid: tkinter.Text.get +- fullName: tkinter.Text.image_cget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.image_cget + name: image_cget + uid: tkinter.Text.image_cget +- fullName: tkinter.Text.image_configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.image_configure + name: image_configure + uid: tkinter.Text.image_configure +- fullName: tkinter.Text.image_create + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.image_create + name: image_create + uid: tkinter.Text.image_create +- fullName: tkinter.Text.image_names + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.image_names + name: image_names + uid: tkinter.Text.image_names +- fullName: tkinter.Text.index + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.index + name: index + uid: tkinter.Text.index +- fullName: tkinter.Text.insert + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.insert + name: insert + uid: tkinter.Text.insert +- fullName: tkinter.Text.mark_gravity + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.mark_gravity + name: mark_gravity + uid: tkinter.Text.mark_gravity +- fullName: tkinter.Text.mark_names + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.mark_names + name: mark_names + uid: tkinter.Text.mark_names +- fullName: tkinter.Text.mark_next + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.mark_next + name: mark_next + uid: tkinter.Text.mark_next +- fullName: tkinter.Text.mark_previous + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.mark_previous + name: mark_previous + uid: tkinter.Text.mark_previous +- fullName: tkinter.Text.mark_set + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.mark_set + name: mark_set + uid: tkinter.Text.mark_set +- fullName: tkinter.Text.mark_unset + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.mark_unset + name: mark_unset + uid: tkinter.Text.mark_unset +- fullName: tkinter.Text.peer_create + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.peer_create + name: peer_create + uid: tkinter.Text.peer_create +- fullName: tkinter.Text.peer_names + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.peer_names + name: peer_names + uid: tkinter.Text.peer_names +- fullName: tkinter.Text.replace + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.replace + name: replace + uid: tkinter.Text.replace +- fullName: tkinter.Text.scan_dragto + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.scan_dragto + name: scan_dragto + uid: tkinter.Text.scan_dragto +- fullName: tkinter.Text.scan_mark + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.scan_mark + name: scan_mark + uid: tkinter.Text.scan_mark +- fullName: tkinter.Text.search + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.search + name: search + uid: tkinter.Text.search +- fullName: tkinter.Text.see + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.see + name: see + uid: tkinter.Text.see +- fullName: tkinter.Text.tag_add + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_add + name: tag_add + uid: tkinter.Text.tag_add +- fullName: tkinter.Text.tag_bind + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_bind + name: tag_bind + uid: tkinter.Text.tag_bind +- fullName: tkinter.Text.tag_cget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_cget + name: tag_cget + uid: tkinter.Text.tag_cget +- fullName: tkinter.Text.tag_config + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_config + name: tag_config + uid: tkinter.Text.tag_config +- fullName: tkinter.Text.tag_configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_configure + name: tag_configure + uid: tkinter.Text.tag_configure +- fullName: tkinter.Text.tag_delete + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_delete + name: tag_delete + uid: tkinter.Text.tag_delete +- fullName: tkinter.Text.tag_lower + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_lower + name: tag_lower + uid: tkinter.Text.tag_lower +- fullName: tkinter.Text.tag_names + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_names + name: tag_names + uid: tkinter.Text.tag_names +- fullName: tkinter.Text.tag_nextrange + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_nextrange + name: tag_nextrange + uid: tkinter.Text.tag_nextrange +- fullName: tkinter.Text.tag_prevrange + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_prevrange + name: tag_prevrange + uid: tkinter.Text.tag_prevrange +- fullName: tkinter.Text.tag_raise + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_raise + name: tag_raise + uid: tkinter.Text.tag_raise +- fullName: tkinter.Text.tag_ranges + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_ranges + name: tag_ranges + uid: tkinter.Text.tag_ranges +- fullName: tkinter.Text.tag_remove + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_remove + name: tag_remove + uid: tkinter.Text.tag_remove +- fullName: tkinter.Text.tag_unbind + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.tag_unbind + name: tag_unbind + uid: tkinter.Text.tag_unbind +- fullName: tkinter.Text.window_cget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.window_cget + name: window_cget + uid: tkinter.Text.window_cget +- fullName: tkinter.Text.window_config + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.window_config + name: window_config + uid: tkinter.Text.window_config +- fullName: tkinter.Text.window_configure + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.window_configure + name: window_configure + uid: tkinter.Text.window_configure +- fullName: tkinter.Text.window_create + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.window_create + name: window_create + uid: tkinter.Text.window_create +- fullName: tkinter.Text.window_names + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.window_names + name: window_names + uid: tkinter.Text.window_names +- fullName: tkinter.Text.yview_pickplace + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text.yview_pickplace + name: yview_pickplace + uid: tkinter.Text.yview_pickplace +- fullName: tkinter.Tk.destroy + href: https://docs.python.org/3/library/tkinter.html#tkinter.Tk.destroy + name: destroy + uid: tkinter.Tk.destroy +- fullName: tkinter.Tk.loadtk + href: https://docs.python.org/3/library/tkinter.html#tkinter.Tk.loadtk + name: loadtk + uid: tkinter.Tk.loadtk +- fullName: tkinter.Tk.readprofile + href: https://docs.python.org/3/library/tkinter.html#tkinter.Tk.readprofile + name: readprofile + uid: tkinter.Tk.readprofile +- fullName: tkinter.Tk.report_callback_exception + href: https://docs.python.org/3/library/tkinter.html#tkinter.Tk.report_callback_exception + name: report_callback_exception + uid: tkinter.Tk.report_callback_exception +- fullName: tkinter.Variable.get + href: https://docs.python.org/3/library/tkinter.html#tkinter.Variable.get + name: get + uid: tkinter.Variable.get +- fullName: tkinter.Variable.initialize + href: https://docs.python.org/3/library/tkinter.html#tkinter.Variable.initialize + name: initialize + uid: tkinter.Variable.initialize +- fullName: tkinter.Variable.set + href: https://docs.python.org/3/library/tkinter.html#tkinter.Variable.set + name: set + uid: tkinter.Variable.set +- fullName: tkinter.Variable.trace + href: https://docs.python.org/3/library/tkinter.html#tkinter.Variable.trace + name: trace + uid: tkinter.Variable.trace +- fullName: tkinter.Variable.trace_add + href: https://docs.python.org/3/library/tkinter.html#tkinter.Variable.trace_add + name: trace_add + uid: tkinter.Variable.trace_add +- fullName: tkinter.Variable.trace_info + href: https://docs.python.org/3/library/tkinter.html#tkinter.Variable.trace_info + name: trace_info + uid: tkinter.Variable.trace_info +- fullName: tkinter.Variable.trace_remove + href: https://docs.python.org/3/library/tkinter.html#tkinter.Variable.trace_remove + name: trace_remove + uid: tkinter.Variable.trace_remove +- fullName: tkinter.Variable.trace_variable + href: https://docs.python.org/3/library/tkinter.html#tkinter.Variable.trace_variable + name: trace_variable + uid: tkinter.Variable.trace_variable +- fullName: tkinter.Variable.trace_vdelete + href: https://docs.python.org/3/library/tkinter.html#tkinter.Variable.trace_vdelete + name: trace_vdelete + uid: tkinter.Variable.trace_vdelete +- fullName: tkinter.Variable.trace_vinfo + href: https://docs.python.org/3/library/tkinter.html#tkinter.Variable.trace_vinfo + name: trace_vinfo + uid: tkinter.Variable.trace_vinfo +- fullName: tkinter.Widget.tk.createfilehandler + href: https://docs.python.org/3/library/tkinter.html#tkinter.Widget.tk.createfilehandler + name: createfilehandler + uid: tkinter.Widget.tk.createfilehandler +- fullName: tkinter.Widget.tk.deletefilehandler + href: https://docs.python.org/3/library/tkinter.html#tkinter.Widget.tk.deletefilehandler + name: deletefilehandler + uid: tkinter.Widget.tk.deletefilehandler +- fullName: tkinter.Wm.aspect + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.aspect + name: aspect + uid: tkinter.Wm.aspect +- fullName: tkinter.Wm.attributes + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.attributes + name: attributes + uid: tkinter.Wm.attributes +- fullName: tkinter.Wm.client + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.client + name: client + uid: tkinter.Wm.client +- fullName: tkinter.Wm.colormapwindows + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.colormapwindows + name: colormapwindows + uid: tkinter.Wm.colormapwindows +- fullName: tkinter.Wm.command + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.command + name: command + uid: tkinter.Wm.command +- fullName: tkinter.Wm.deiconify + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.deiconify + name: deiconify + uid: tkinter.Wm.deiconify +- fullName: tkinter.Wm.focusmodel + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.focusmodel + name: focusmodel + uid: tkinter.Wm.focusmodel +- fullName: tkinter.Wm.forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.forget + name: forget + uid: tkinter.Wm.forget +- fullName: tkinter.Wm.frame + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.frame + name: frame + uid: tkinter.Wm.frame +- fullName: tkinter.Wm.geometry + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.geometry + name: geometry + uid: tkinter.Wm.geometry +- fullName: tkinter.Wm.grid + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.grid + name: grid + uid: tkinter.Wm.grid +- fullName: tkinter.Wm.group + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.group + name: group + uid: tkinter.Wm.group +- fullName: tkinter.Wm.iconbitmap + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.iconbitmap + name: iconbitmap + uid: tkinter.Wm.iconbitmap +- fullName: tkinter.Wm.iconify + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.iconify + name: iconify + uid: tkinter.Wm.iconify +- fullName: tkinter.Wm.iconmask + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.iconmask + name: iconmask + uid: tkinter.Wm.iconmask +- fullName: tkinter.Wm.iconname + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.iconname + name: iconname + uid: tkinter.Wm.iconname +- fullName: tkinter.Wm.iconphoto + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.iconphoto + name: iconphoto + uid: tkinter.Wm.iconphoto +- fullName: tkinter.Wm.iconposition + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.iconposition + name: iconposition + uid: tkinter.Wm.iconposition +- fullName: tkinter.Wm.iconwindow + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.iconwindow + name: iconwindow + uid: tkinter.Wm.iconwindow +- fullName: tkinter.Wm.manage + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.manage + name: manage + uid: tkinter.Wm.manage +- fullName: tkinter.Wm.maxsize + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.maxsize + name: maxsize + uid: tkinter.Wm.maxsize +- fullName: tkinter.Wm.minsize + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.minsize + name: minsize + uid: tkinter.Wm.minsize +- fullName: tkinter.Wm.overrideredirect + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.overrideredirect + name: overrideredirect + uid: tkinter.Wm.overrideredirect +- fullName: tkinter.Wm.positionfrom + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.positionfrom + name: positionfrom + uid: tkinter.Wm.positionfrom +- fullName: tkinter.Wm.protocol + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.protocol + name: protocol + uid: tkinter.Wm.protocol +- fullName: tkinter.Wm.resizable + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.resizable + name: resizable + uid: tkinter.Wm.resizable +- fullName: tkinter.Wm.sizefrom + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.sizefrom + name: sizefrom + uid: tkinter.Wm.sizefrom +- fullName: tkinter.Wm.state + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.state + name: state + uid: tkinter.Wm.state +- fullName: tkinter.Wm.title + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.title + name: title + uid: tkinter.Wm.title +- fullName: tkinter.Wm.transient + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.transient + name: transient + uid: tkinter.Wm.transient +- fullName: tkinter.Wm.withdraw + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.withdraw + name: withdraw + uid: tkinter.Wm.withdraw +- fullName: tkinter.Wm.wm_aspect + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_aspect + name: wm_aspect + uid: tkinter.Wm.wm_aspect +- fullName: tkinter.Wm.wm_attributes + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_attributes + name: wm_attributes + uid: tkinter.Wm.wm_attributes +- fullName: tkinter.Wm.wm_client + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_client + name: wm_client + uid: tkinter.Wm.wm_client +- fullName: tkinter.Wm.wm_colormapwindows + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_colormapwindows + name: wm_colormapwindows + uid: tkinter.Wm.wm_colormapwindows +- fullName: tkinter.Wm.wm_command + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_command + name: wm_command + uid: tkinter.Wm.wm_command +- fullName: tkinter.Wm.wm_deiconify + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_deiconify + name: wm_deiconify + uid: tkinter.Wm.wm_deiconify +- fullName: tkinter.Wm.wm_focusmodel + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_focusmodel + name: wm_focusmodel + uid: tkinter.Wm.wm_focusmodel +- fullName: tkinter.Wm.wm_forget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_forget + name: wm_forget + uid: tkinter.Wm.wm_forget +- fullName: tkinter.Wm.wm_frame + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_frame + name: wm_frame + uid: tkinter.Wm.wm_frame +- fullName: tkinter.Wm.wm_geometry + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_geometry + name: wm_geometry + uid: tkinter.Wm.wm_geometry +- fullName: tkinter.Wm.wm_grid + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_grid + name: wm_grid + uid: tkinter.Wm.wm_grid +- fullName: tkinter.Wm.wm_group + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_group + name: wm_group + uid: tkinter.Wm.wm_group +- fullName: tkinter.Wm.wm_iconbitmap + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_iconbitmap + name: wm_iconbitmap + uid: tkinter.Wm.wm_iconbitmap +- fullName: tkinter.Wm.wm_iconify + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_iconify + name: wm_iconify + uid: tkinter.Wm.wm_iconify +- fullName: tkinter.Wm.wm_iconmask + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_iconmask + name: wm_iconmask + uid: tkinter.Wm.wm_iconmask +- fullName: tkinter.Wm.wm_iconname + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_iconname + name: wm_iconname + uid: tkinter.Wm.wm_iconname +- fullName: tkinter.Wm.wm_iconphoto + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_iconphoto + name: wm_iconphoto + uid: tkinter.Wm.wm_iconphoto +- fullName: tkinter.Wm.wm_iconposition + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_iconposition + name: wm_iconposition + uid: tkinter.Wm.wm_iconposition +- fullName: tkinter.Wm.wm_iconwindow + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_iconwindow + name: wm_iconwindow + uid: tkinter.Wm.wm_iconwindow +- fullName: tkinter.Wm.wm_manage + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_manage + name: wm_manage + uid: tkinter.Wm.wm_manage +- fullName: tkinter.Wm.wm_maxsize + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_maxsize + name: wm_maxsize + uid: tkinter.Wm.wm_maxsize +- fullName: tkinter.Wm.wm_minsize + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_minsize + name: wm_minsize + uid: tkinter.Wm.wm_minsize +- fullName: tkinter.Wm.wm_overrideredirect + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_overrideredirect + name: wm_overrideredirect + uid: tkinter.Wm.wm_overrideredirect +- fullName: tkinter.Wm.wm_positionfrom + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_positionfrom + name: wm_positionfrom + uid: tkinter.Wm.wm_positionfrom +- fullName: tkinter.Wm.wm_protocol + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_protocol + name: wm_protocol + uid: tkinter.Wm.wm_protocol +- fullName: tkinter.Wm.wm_resizable + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_resizable + name: wm_resizable + uid: tkinter.Wm.wm_resizable +- fullName: tkinter.Wm.wm_sizefrom + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_sizefrom + name: wm_sizefrom + uid: tkinter.Wm.wm_sizefrom +- fullName: tkinter.Wm.wm_state + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_state + name: wm_state + uid: tkinter.Wm.wm_state +- fullName: tkinter.Wm.wm_title + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_title + name: wm_title + uid: tkinter.Wm.wm_title +- fullName: tkinter.Wm.wm_transient + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_transient + name: wm_transient + uid: tkinter.Wm.wm_transient +- fullName: tkinter.Wm.wm_withdraw + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm.wm_withdraw + name: wm_withdraw + uid: tkinter.Wm.wm_withdraw +- fullName: tkinter.XView.xview + href: https://docs.python.org/3/library/tkinter.html#tkinter.XView.xview + name: xview + uid: tkinter.XView.xview +- fullName: tkinter.XView.xview_moveto + href: https://docs.python.org/3/library/tkinter.html#tkinter.XView.xview_moveto + name: xview_moveto + uid: tkinter.XView.xview_moveto +- fullName: tkinter.XView.xview_scroll + href: https://docs.python.org/3/library/tkinter.html#tkinter.XView.xview_scroll + name: xview_scroll + uid: tkinter.XView.xview_scroll +- fullName: tkinter.YView.yview + href: https://docs.python.org/3/library/tkinter.html#tkinter.YView.yview + name: yview + uid: tkinter.YView.yview +- fullName: tkinter.YView.yview_moveto + href: https://docs.python.org/3/library/tkinter.html#tkinter.YView.yview_moveto + name: yview_moveto + uid: tkinter.YView.yview_moveto +- fullName: tkinter.YView.yview_scroll + href: https://docs.python.org/3/library/tkinter.html#tkinter.YView.yview_scroll + name: yview_scroll + uid: tkinter.YView.yview_scroll - fullName: tkinter.commondialog.Dialog.show href: https://docs.python.org/3/library/dialog.html#tkinter.commondialog.Dialog.show name: show uid: tkinter.commondialog.Dialog.show +- fullName: tkinter.dialog.Dialog.destroy + href: https://docs.python.org/3/library/dialog.html#tkinter.dialog.Dialog.destroy + name: destroy + uid: tkinter.dialog.Dialog.destroy - fullName: tkinter.dnd.DndHandler.cancel href: https://docs.python.org/3/library/tkinter.dnd.html#tkinter.dnd.DndHandler.cancel name: cancel @@ -16951,6 +19211,10 @@ references: href: https://docs.python.org/3/library/dialog.html#tkinter.filedialog.FileDialog.go name: go uid: tkinter.filedialog.FileDialog.go +- fullName: tkinter.filedialog.FileDialog.ok_command + href: https://docs.python.org/3/library/dialog.html#tkinter.filedialog.FileDialog.ok_command + name: ok_command + uid: tkinter.filedialog.FileDialog.ok_command - fullName: tkinter.filedialog.FileDialog.ok_event href: https://docs.python.org/3/library/dialog.html#tkinter.filedialog.FileDialog.ok_event name: ok_event @@ -16987,6 +19251,10 @@ references: href: https://docs.python.org/3/library/tkinter.font.html#tkinter.font.Font.config name: config uid: tkinter.font.Font.config +- fullName: tkinter.font.Font.configure + href: https://docs.python.org/3/library/tkinter.font.html#tkinter.font.Font.configure + name: configure + uid: tkinter.font.Font.configure - fullName: tkinter.font.Font.copy href: https://docs.python.org/3/library/tkinter.font.html#tkinter.font.Font.copy name: copy @@ -17003,6 +19271,10 @@ references: href: https://docs.python.org/3/library/tkinter.messagebox.html#tkinter.messagebox.Message.show name: show uid: tkinter.messagebox.Message.show +- fullName: tkinter.simpledialog.Dialog.apply + href: https://docs.python.org/3/library/dialog.html#tkinter.simpledialog.Dialog.apply + name: apply + uid: tkinter.simpledialog.Dialog.apply - fullName: tkinter.simpledialog.Dialog.body href: https://docs.python.org/3/library/dialog.html#tkinter.simpledialog.Dialog.body name: body @@ -17011,6 +19283,26 @@ references: href: https://docs.python.org/3/library/dialog.html#tkinter.simpledialog.Dialog.buttonbox name: buttonbox uid: tkinter.simpledialog.Dialog.buttonbox +- fullName: tkinter.simpledialog.Dialog.destroy + href: https://docs.python.org/3/library/dialog.html#tkinter.simpledialog.Dialog.destroy + name: destroy + uid: tkinter.simpledialog.Dialog.destroy +- fullName: tkinter.simpledialog.Dialog.validate + href: https://docs.python.org/3/library/dialog.html#tkinter.simpledialog.Dialog.validate + name: validate + uid: tkinter.simpledialog.Dialog.validate +- fullName: tkinter.simpledialog.SimpleDialog.go + href: https://docs.python.org/3/library/dialog.html#tkinter.simpledialog.SimpleDialog.go + name: go + uid: tkinter.simpledialog.SimpleDialog.go +- fullName: tkinter.ttk.Button.invoke + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Button.invoke + name: invoke + uid: tkinter.ttk.Button.invoke +- fullName: tkinter.ttk.Checkbutton.invoke + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Checkbutton.invoke + name: invoke + uid: tkinter.ttk.Checkbutton.invoke - fullName: tkinter.ttk.Combobox.current href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Combobox.current name: current @@ -17023,6 +19315,22 @@ references: href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Combobox.set name: set uid: tkinter.ttk.Combobox.set +- fullName: tkinter.ttk.Entry.bbox + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Entry.bbox + name: bbox + uid: tkinter.ttk.Entry.bbox +- fullName: tkinter.ttk.Entry.identify + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Entry.identify + name: identify + uid: tkinter.ttk.Entry.identify +- fullName: tkinter.ttk.Entry.validate + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Entry.validate + name: validate + uid: tkinter.ttk.Entry.validate +- fullName: tkinter.ttk.LabeledScale.destroy + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.LabeledScale.destroy + name: destroy + uid: tkinter.ttk.LabeledScale.destroy - fullName: tkinter.ttk.Notebook.add href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Notebook.add name: add @@ -17063,6 +19371,30 @@ references: href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Notebook.tabs name: tabs uid: tkinter.ttk.Notebook.tabs +- fullName: tkinter.ttk.OptionMenu.destroy + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.OptionMenu.destroy + name: destroy + uid: tkinter.ttk.OptionMenu.destroy +- fullName: tkinter.ttk.OptionMenu.set_menu + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.OptionMenu.set_menu + name: set_menu + uid: tkinter.ttk.OptionMenu.set_menu +- fullName: tkinter.ttk.Panedwindow.forget + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Panedwindow.forget + name: forget + uid: tkinter.ttk.Panedwindow.forget +- fullName: tkinter.ttk.Panedwindow.insert + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Panedwindow.insert + name: insert + uid: tkinter.ttk.Panedwindow.insert +- fullName: tkinter.ttk.Panedwindow.pane + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Panedwindow.pane + name: pane + uid: tkinter.ttk.Panedwindow.pane +- fullName: tkinter.ttk.Panedwindow.sashpos + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Panedwindow.sashpos + name: sashpos + uid: tkinter.ttk.Panedwindow.sashpos - fullName: tkinter.ttk.Progressbar.start href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Progressbar.start name: start @@ -17075,6 +19407,18 @@ references: href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Progressbar.stop name: stop uid: tkinter.ttk.Progressbar.stop +- fullName: tkinter.ttk.Radiobutton.invoke + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Radiobutton.invoke + name: invoke + uid: tkinter.ttk.Radiobutton.invoke +- fullName: tkinter.ttk.Scale.configure + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Scale.configure + name: configure + uid: tkinter.ttk.Scale.configure +- fullName: tkinter.ttk.Scale.get + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Scale.get + name: get + uid: tkinter.ttk.Scale.get - fullName: tkinter.ttk.Spinbox.get href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Spinbox.get name: get @@ -19507,18 +21851,6 @@ references: href: https://docs.python.org/3/library/_thread.html#thread.TIMEOUT_MAX name: TIMEOUT_MAX uid: _thread.TIMEOUT_MAX -- fullName: _tkinter.EXCEPTION - href: https://docs.python.org/3/library/tkinter.html#tkinter.EXCEPTION - name: EXCEPTION - uid: _tkinter.EXCEPTION -- fullName: _tkinter.READABLE - href: https://docs.python.org/3/library/tkinter.html#tkinter.READABLE - name: READABLE - uid: _tkinter.READABLE -- fullName: _tkinter.WRITABLE - href: https://docs.python.org/3/library/tkinter.html#tkinter.WRITABLE - name: WRITABLE - uid: _tkinter.WRITABLE - fullName: array.typecodes href: https://docs.python.org/3/library/array.html#array.typecodes name: typecodes @@ -25439,6 +27771,330 @@ references: href: https://docs.python.org/3/library/time.html#time.tzname name: tzname uid: time.tzname +- fullName: tkinter.ACTIVE + href: https://docs.python.org/3/library/tkinter.html#tkinter.ACTIVE + name: ACTIVE + uid: tkinter.ACTIVE +- fullName: tkinter.ALL + href: https://docs.python.org/3/library/tkinter.html#tkinter.ALL + name: ALL + uid: tkinter.ALL +- fullName: tkinter.ANCHOR + href: https://docs.python.org/3/library/tkinter.html#tkinter.ANCHOR + name: ANCHOR + uid: tkinter.ANCHOR +- fullName: tkinter.ARC + href: https://docs.python.org/3/library/tkinter.html#tkinter.ARC + name: ARC + uid: tkinter.ARC +- fullName: tkinter.BASELINE + href: https://docs.python.org/3/library/tkinter.html#tkinter.BASELINE + name: BASELINE + uid: tkinter.BASELINE +- fullName: tkinter.BEVEL + href: https://docs.python.org/3/library/tkinter.html#tkinter.BEVEL + name: BEVEL + uid: tkinter.BEVEL +- fullName: tkinter.BOTH + href: https://docs.python.org/3/library/tkinter.html#tkinter.BOTH + name: BOTH + uid: tkinter.BOTH +- fullName: tkinter.BOTTOM + href: https://docs.python.org/3/library/tkinter.html#tkinter.BOTTOM + name: BOTTOM + uid: tkinter.BOTTOM +- fullName: tkinter.BROWSE + href: https://docs.python.org/3/library/tkinter.html#tkinter.BROWSE + name: BROWSE + uid: tkinter.BROWSE +- fullName: tkinter.BUTT + href: https://docs.python.org/3/library/tkinter.html#tkinter.BUTT + name: BUTT + uid: tkinter.BUTT +- fullName: tkinter.CASCADE + href: https://docs.python.org/3/library/tkinter.html#tkinter.CASCADE + name: CASCADE + uid: tkinter.CASCADE +- fullName: tkinter.CENTER + href: https://docs.python.org/3/library/tkinter.html#tkinter.CENTER + name: CENTER + uid: tkinter.CENTER +- fullName: tkinter.CHAR + href: https://docs.python.org/3/library/tkinter.html#tkinter.CHAR + name: CHAR + uid: tkinter.CHAR +- fullName: tkinter.CHECKBUTTON + href: https://docs.python.org/3/library/tkinter.html#tkinter.CHECKBUTTON + name: CHECKBUTTON + uid: tkinter.CHECKBUTTON +- fullName: tkinter.CHORD + href: https://docs.python.org/3/library/tkinter.html#tkinter.CHORD + name: CHORD + uid: tkinter.CHORD +- fullName: tkinter.COMMAND + href: https://docs.python.org/3/library/tkinter.html#tkinter.COMMAND + name: COMMAND + uid: tkinter.COMMAND +- fullName: tkinter.CURRENT + href: https://docs.python.org/3/library/tkinter.html#tkinter.CURRENT + name: CURRENT + uid: tkinter.CURRENT +- fullName: tkinter.DISABLED + href: https://docs.python.org/3/library/tkinter.html#tkinter.DISABLED + name: DISABLED + uid: tkinter.DISABLED +- fullName: tkinter.DOTBOX + href: https://docs.python.org/3/library/tkinter.html#tkinter.DOTBOX + name: DOTBOX + uid: tkinter.DOTBOX +- fullName: tkinter.E + href: https://docs.python.org/3/library/tkinter.html#tkinter.E + name: E + uid: tkinter.E +- fullName: tkinter.END + href: https://docs.python.org/3/library/tkinter.html#tkinter.END + name: END + uid: tkinter.END +- fullName: tkinter.EW + href: https://docs.python.org/3/library/tkinter.html#tkinter.EW + name: EW + uid: tkinter.EW +- fullName: tkinter.EXCEPTION + href: https://docs.python.org/3/library/tkinter.html#tkinter.EXCEPTION + name: EXCEPTION + uid: tkinter.EXCEPTION +- fullName: tkinter.EXTENDED + href: https://docs.python.org/3/library/tkinter.html#tkinter.EXTENDED + name: EXTENDED + uid: tkinter.EXTENDED +- fullName: tkinter.FALSE + href: https://docs.python.org/3/library/tkinter.html#tkinter.FALSE + name: 'FALSE' + uid: tkinter.FALSE +- fullName: tkinter.FIRST + href: https://docs.python.org/3/library/tkinter.html#tkinter.FIRST + name: FIRST + uid: tkinter.FIRST +- fullName: tkinter.FLAT + href: https://docs.python.org/3/library/tkinter.html#tkinter.FLAT + name: FLAT + uid: tkinter.FLAT +- fullName: tkinter.GROOVE + href: https://docs.python.org/3/library/tkinter.html#tkinter.GROOVE + name: GROOVE + uid: tkinter.GROOVE +- fullName: tkinter.HIDDEN + href: https://docs.python.org/3/library/tkinter.html#tkinter.HIDDEN + name: HIDDEN + uid: tkinter.HIDDEN +- fullName: tkinter.HORIZONTAL + href: https://docs.python.org/3/library/tkinter.html#tkinter.HORIZONTAL + name: HORIZONTAL + uid: tkinter.HORIZONTAL +- fullName: tkinter.INSERT + href: https://docs.python.org/3/library/tkinter.html#tkinter.INSERT + name: INSERT + uid: tkinter.INSERT +- fullName: tkinter.INSIDE + href: https://docs.python.org/3/library/tkinter.html#tkinter.INSIDE + name: INSIDE + uid: tkinter.INSIDE +- fullName: tkinter.LAST + href: https://docs.python.org/3/library/tkinter.html#tkinter.LAST + name: LAST + uid: tkinter.LAST +- fullName: tkinter.LEFT + href: https://docs.python.org/3/library/tkinter.html#tkinter.LEFT + name: LEFT + uid: tkinter.LEFT +- fullName: tkinter.MITER + href: https://docs.python.org/3/library/tkinter.html#tkinter.MITER + name: MITER + uid: tkinter.MITER +- fullName: tkinter.MOVETO + href: https://docs.python.org/3/library/tkinter.html#tkinter.MOVETO + name: MOVETO + uid: tkinter.MOVETO +- fullName: tkinter.MULTIPLE + href: https://docs.python.org/3/library/tkinter.html#tkinter.MULTIPLE + name: MULTIPLE + uid: tkinter.MULTIPLE +- fullName: tkinter.N + href: https://docs.python.org/3/library/tkinter.html#tkinter.N + name: N + uid: tkinter.N +- fullName: tkinter.NE + href: https://docs.python.org/3/library/tkinter.html#tkinter.NE + name: NE + uid: tkinter.NE +- fullName: tkinter.NO + href: https://docs.python.org/3/library/tkinter.html#tkinter.NO + name: 'NO' + uid: tkinter.NO +- fullName: tkinter.NONE + href: https://docs.python.org/3/library/tkinter.html#tkinter.NONE + name: NONE + uid: tkinter.NONE +- fullName: tkinter.NORMAL + href: https://docs.python.org/3/library/tkinter.html#tkinter.NORMAL + name: NORMAL + uid: tkinter.NORMAL +- fullName: tkinter.NS + href: https://docs.python.org/3/library/tkinter.html#tkinter.NS + name: NS + uid: tkinter.NS +- fullName: tkinter.NSEW + href: https://docs.python.org/3/library/tkinter.html#tkinter.NSEW + name: NSEW + uid: tkinter.NSEW +- fullName: tkinter.NUMERIC + href: https://docs.python.org/3/library/tkinter.html#tkinter.NUMERIC + name: NUMERIC + uid: tkinter.NUMERIC +- fullName: tkinter.NW + href: https://docs.python.org/3/library/tkinter.html#tkinter.NW + name: NW + uid: tkinter.NW +- fullName: tkinter.OFF + href: https://docs.python.org/3/library/tkinter.html#tkinter.OFF + name: 'OFF' + uid: tkinter.OFF +- fullName: tkinter.ON + href: https://docs.python.org/3/library/tkinter.html#tkinter.ON + name: 'ON' + uid: tkinter.ON +- fullName: tkinter.OUTSIDE + href: https://docs.python.org/3/library/tkinter.html#tkinter.OUTSIDE + name: OUTSIDE + uid: tkinter.OUTSIDE +- fullName: tkinter.PAGES + href: https://docs.python.org/3/library/tkinter.html#tkinter.PAGES + name: PAGES + uid: tkinter.PAGES +- fullName: tkinter.PIESLICE + href: https://docs.python.org/3/library/tkinter.html#tkinter.PIESLICE + name: PIESLICE + uid: tkinter.PIESLICE +- fullName: tkinter.PROJECTING + href: https://docs.python.org/3/library/tkinter.html#tkinter.PROJECTING + name: PROJECTING + uid: tkinter.PROJECTING +- fullName: tkinter.RADIOBUTTON + href: https://docs.python.org/3/library/tkinter.html#tkinter.RADIOBUTTON + name: RADIOBUTTON + uid: tkinter.RADIOBUTTON +- fullName: tkinter.RAISED + href: https://docs.python.org/3/library/tkinter.html#tkinter.RAISED + name: RAISED + uid: tkinter.RAISED +- fullName: tkinter.READABLE + href: https://docs.python.org/3/library/tkinter.html#tkinter.READABLE + name: READABLE + uid: tkinter.READABLE +- fullName: tkinter.RIDGE + href: https://docs.python.org/3/library/tkinter.html#tkinter.RIDGE + name: RIDGE + uid: tkinter.RIDGE +- fullName: tkinter.RIGHT + href: https://docs.python.org/3/library/tkinter.html#tkinter.RIGHT + name: RIGHT + uid: tkinter.RIGHT +- fullName: tkinter.ROUND + href: https://docs.python.org/3/library/tkinter.html#tkinter.ROUND + name: ROUND + uid: tkinter.ROUND +- fullName: tkinter.S + href: https://docs.python.org/3/library/tkinter.html#tkinter.S + name: S + uid: tkinter.S +- fullName: tkinter.SCROLL + href: https://docs.python.org/3/library/tkinter.html#tkinter.SCROLL + name: SCROLL + uid: tkinter.SCROLL +- fullName: tkinter.SE + href: https://docs.python.org/3/library/tkinter.html#tkinter.SE + name: SE + uid: tkinter.SE +- fullName: tkinter.SEL + href: https://docs.python.org/3/library/tkinter.html#tkinter.SEL + name: SEL + uid: tkinter.SEL +- fullName: tkinter.SEL_FIRST + href: https://docs.python.org/3/library/tkinter.html#tkinter.SEL_FIRST + name: SEL_FIRST + uid: tkinter.SEL_FIRST +- fullName: tkinter.SEL_LAST + href: https://docs.python.org/3/library/tkinter.html#tkinter.SEL_LAST + name: SEL_LAST + uid: tkinter.SEL_LAST +- fullName: tkinter.SEPARATOR + href: https://docs.python.org/3/library/tkinter.html#tkinter.SEPARATOR + name: SEPARATOR + uid: tkinter.SEPARATOR +- fullName: tkinter.SINGLE + href: https://docs.python.org/3/library/tkinter.html#tkinter.SINGLE + name: SINGLE + uid: tkinter.SINGLE +- fullName: tkinter.SOLID + href: https://docs.python.org/3/library/tkinter.html#tkinter.SOLID + name: SOLID + uid: tkinter.SOLID +- fullName: tkinter.SUNKEN + href: https://docs.python.org/3/library/tkinter.html#tkinter.SUNKEN + name: SUNKEN + uid: tkinter.SUNKEN +- fullName: tkinter.SW + href: https://docs.python.org/3/library/tkinter.html#tkinter.SW + name: SW + uid: tkinter.SW +- fullName: tkinter.TOP + href: https://docs.python.org/3/library/tkinter.html#tkinter.TOP + name: TOP + uid: tkinter.TOP +- fullName: tkinter.TRUE + href: https://docs.python.org/3/library/tkinter.html#tkinter.TRUE + name: 'TRUE' + uid: tkinter.TRUE +- fullName: tkinter.UNDERLINE + href: https://docs.python.org/3/library/tkinter.html#tkinter.UNDERLINE + name: UNDERLINE + uid: tkinter.UNDERLINE +- fullName: tkinter.UNITS + href: https://docs.python.org/3/library/tkinter.html#tkinter.UNITS + name: UNITS + uid: tkinter.UNITS +- fullName: tkinter.VERTICAL + href: https://docs.python.org/3/library/tkinter.html#tkinter.VERTICAL + name: VERTICAL + uid: tkinter.VERTICAL +- fullName: tkinter.W + href: https://docs.python.org/3/library/tkinter.html#tkinter.W + name: W + uid: tkinter.W +- fullName: tkinter.WORD + href: https://docs.python.org/3/library/tkinter.html#tkinter.WORD + name: WORD + uid: tkinter.WORD +- fullName: tkinter.WRITABLE + href: https://docs.python.org/3/library/tkinter.html#tkinter.WRITABLE + name: WRITABLE + uid: tkinter.WRITABLE +- fullName: tkinter.X + href: https://docs.python.org/3/library/tkinter.html#tkinter.X + name: X + uid: tkinter.X +- fullName: tkinter.Y + href: https://docs.python.org/3/library/tkinter.html#tkinter.Y + name: Y + uid: tkinter.Y +- fullName: tkinter.YES + href: https://docs.python.org/3/library/tkinter.html#tkinter.YES + name: 'YES' + uid: tkinter.YES +- fullName: tkinter.dialog.DIALOG_ICON + href: https://docs.python.org/3/library/dialog.html#tkinter.dialog.DIALOG_ICON + name: DIALOG_ICON + uid: tkinter.dialog.DIALOG_ICON - fullName: tkinter.font.BOLD href: https://docs.python.org/3/library/tkinter.font.html#tkinter.font.BOLD name: BOLD @@ -27643,6 +30299,10 @@ references: href: https://docs.python.org/3/library/dialog.html#module-tkinter.commondialog name: commondialog uid: tkinter.commondialog +- fullName: tkinter.dialog + href: https://docs.python.org/3/library/dialog.html#module-tkinter.dialog + name: dialog + uid: tkinter.dialog - fullName: tkinter.dnd href: https://docs.python.org/3/library/tkinter.dnd.html#module-tkinter.dnd name: dnd @@ -30807,10 +33467,166 @@ references: href: https://docs.python.org/3/library/timeit.html#timeit.Timer name: Timer uid: timeit.Timer +- fullName: tkinter.BaseWidget + href: https://docs.python.org/3/library/tkinter.html#tkinter.BaseWidget + name: BaseWidget + uid: tkinter.BaseWidget +- fullName: tkinter.BitmapImage + href: https://docs.python.org/3/library/tkinter.html#tkinter.BitmapImage + name: BitmapImage + uid: tkinter.BitmapImage +- fullName: tkinter.BooleanVar + href: https://docs.python.org/3/library/tkinter.html#tkinter.BooleanVar + name: BooleanVar + uid: tkinter.BooleanVar +- fullName: tkinter.Button + href: https://docs.python.org/3/library/tkinter.html#tkinter.Button + name: Button + uid: tkinter.Button +- fullName: tkinter.CallWrapper + href: https://docs.python.org/3/library/tkinter.html#tkinter.CallWrapper + name: CallWrapper + uid: tkinter.CallWrapper +- fullName: tkinter.Canvas + href: https://docs.python.org/3/library/tkinter.html#tkinter.Canvas + name: Canvas + uid: tkinter.Canvas +- fullName: tkinter.Checkbutton + href: https://docs.python.org/3/library/tkinter.html#tkinter.Checkbutton + name: Checkbutton + uid: tkinter.Checkbutton +- fullName: tkinter.DoubleVar + href: https://docs.python.org/3/library/tkinter.html#tkinter.DoubleVar + name: DoubleVar + uid: tkinter.DoubleVar +- fullName: tkinter.Entry + href: https://docs.python.org/3/library/tkinter.html#tkinter.Entry + name: Entry + uid: tkinter.Entry +- fullName: tkinter.Event + href: https://docs.python.org/3/library/tkinter.html#tkinter.Event + name: Event + uid: tkinter.Event +- fullName: tkinter.EventType + href: https://docs.python.org/3/library/tkinter.html#tkinter.EventType + name: EventType + uid: tkinter.EventType +- fullName: tkinter.Frame + href: https://docs.python.org/3/library/tkinter.html#tkinter.Frame + name: Frame + uid: tkinter.Frame +- fullName: tkinter.Grid + href: https://docs.python.org/3/library/tkinter.html#tkinter.Grid + name: Grid + uid: tkinter.Grid +- fullName: tkinter.Image + href: https://docs.python.org/3/library/tkinter.html#tkinter.Image + name: Image + uid: tkinter.Image +- fullName: tkinter.IntVar + href: https://docs.python.org/3/library/tkinter.html#tkinter.IntVar + name: IntVar + uid: tkinter.IntVar +- fullName: tkinter.Label + href: https://docs.python.org/3/library/tkinter.html#tkinter.Label + name: Label + uid: tkinter.Label +- fullName: tkinter.LabelFrame + href: https://docs.python.org/3/library/tkinter.html#tkinter.LabelFrame + name: LabelFrame + uid: tkinter.LabelFrame +- fullName: tkinter.Listbox + href: https://docs.python.org/3/library/tkinter.html#tkinter.Listbox + name: Listbox + uid: tkinter.Listbox +- fullName: tkinter.Menu + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menu + name: Menu + uid: tkinter.Menu +- fullName: tkinter.Menubutton + href: https://docs.python.org/3/library/tkinter.html#tkinter.Menubutton + name: Menubutton + uid: tkinter.Menubutton +- fullName: tkinter.Message + href: https://docs.python.org/3/library/tkinter.html#tkinter.Message + name: Message + uid: tkinter.Message +- fullName: tkinter.Misc + href: https://docs.python.org/3/library/tkinter.html#tkinter.Misc + name: Misc + uid: tkinter.Misc +- fullName: tkinter.OptionMenu + href: https://docs.python.org/3/library/tkinter.html#tkinter.OptionMenu + name: OptionMenu + uid: tkinter.OptionMenu +- fullName: tkinter.Pack + href: https://docs.python.org/3/library/tkinter.html#tkinter.Pack + name: Pack + uid: tkinter.Pack +- fullName: tkinter.PanedWindow + href: https://docs.python.org/3/library/tkinter.html#tkinter.PanedWindow + name: PanedWindow + uid: tkinter.PanedWindow +- fullName: tkinter.PhotoImage + href: https://docs.python.org/3/library/tkinter.html#tkinter.PhotoImage + name: PhotoImage + uid: tkinter.PhotoImage +- fullName: tkinter.Place + href: https://docs.python.org/3/library/tkinter.html#tkinter.Place + name: Place + uid: tkinter.Place +- fullName: tkinter.Radiobutton + href: https://docs.python.org/3/library/tkinter.html#tkinter.Radiobutton + name: Radiobutton + uid: tkinter.Radiobutton +- fullName: tkinter.Scale + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scale + name: Scale + uid: tkinter.Scale +- fullName: tkinter.Scrollbar + href: https://docs.python.org/3/library/tkinter.html#tkinter.Scrollbar + name: Scrollbar + uid: tkinter.Scrollbar +- fullName: tkinter.Spinbox + href: https://docs.python.org/3/library/tkinter.html#tkinter.Spinbox + name: Spinbox + uid: tkinter.Spinbox +- fullName: tkinter.StringVar + href: https://docs.python.org/3/library/tkinter.html#tkinter.StringVar + name: StringVar + uid: tkinter.StringVar +- fullName: tkinter.Text + href: https://docs.python.org/3/library/tkinter.html#tkinter.Text + name: Text + uid: tkinter.Text - fullName: tkinter.Tk href: https://docs.python.org/3/library/tkinter.html#tkinter.Tk name: Tk uid: tkinter.Tk +- fullName: tkinter.Toplevel + href: https://docs.python.org/3/library/tkinter.html#tkinter.Toplevel + name: Toplevel + uid: tkinter.Toplevel +- fullName: tkinter.Variable + href: https://docs.python.org/3/library/tkinter.html#tkinter.Variable + name: Variable + uid: tkinter.Variable +- fullName: tkinter.Widget + href: https://docs.python.org/3/library/tkinter.html#tkinter.Widget + name: Widget + uid: tkinter.Widget +- fullName: tkinter.Wm + href: https://docs.python.org/3/library/tkinter.html#tkinter.Wm + name: Wm + uid: tkinter.Wm +- fullName: tkinter.XView + href: https://docs.python.org/3/library/tkinter.html#tkinter.XView + name: XView + uid: tkinter.XView +- fullName: tkinter.YView + href: https://docs.python.org/3/library/tkinter.html#tkinter.YView + name: YView + uid: tkinter.YView - fullName: tkinter.colorchooser.Chooser href: https://docs.python.org/3/library/tkinter.colorchooser.html#tkinter.colorchooser.Chooser name: Chooser @@ -30819,6 +33635,10 @@ references: href: https://docs.python.org/3/library/dialog.html#tkinter.commondialog.Dialog name: Dialog uid: tkinter.commondialog.Dialog +- fullName: tkinter.dialog.Dialog + href: https://docs.python.org/3/library/dialog.html#tkinter.dialog.Dialog + name: Dialog + uid: tkinter.dialog.Dialog - fullName: tkinter.dnd.DndHandler href: https://docs.python.org/3/library/tkinter.dnd.html#tkinter.dnd.DndHandler name: DndHandler @@ -30863,18 +33683,90 @@ references: href: https://docs.python.org/3/library/dialog.html#tkinter.simpledialog.Dialog name: Dialog uid: tkinter.simpledialog.Dialog +- fullName: tkinter.simpledialog.SimpleDialog + href: https://docs.python.org/3/library/dialog.html#tkinter.simpledialog.SimpleDialog + name: SimpleDialog + uid: tkinter.simpledialog.SimpleDialog +- fullName: tkinter.ttk.Button + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Button + name: Button + uid: tkinter.ttk.Button +- fullName: tkinter.ttk.Checkbutton + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Checkbutton + name: Checkbutton + uid: tkinter.ttk.Checkbutton - fullName: tkinter.ttk.Combobox href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Combobox name: Combobox uid: tkinter.ttk.Combobox +- fullName: tkinter.ttk.Entry + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Entry + name: Entry + uid: tkinter.ttk.Entry +- fullName: tkinter.ttk.Frame + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Frame + name: Frame + uid: tkinter.ttk.Frame +- fullName: tkinter.ttk.Label + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Label + name: Label + uid: tkinter.ttk.Label +- fullName: tkinter.ttk.LabelFrame + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.LabelFrame + name: LabelFrame + uid: tkinter.ttk.LabelFrame +- fullName: tkinter.ttk.LabeledScale + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.LabeledScale + name: LabeledScale + uid: tkinter.ttk.LabeledScale +- fullName: tkinter.ttk.Labelframe + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Labelframe + name: Labelframe + uid: tkinter.ttk.Labelframe +- fullName: tkinter.ttk.Menubutton + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Menubutton + name: Menubutton + uid: tkinter.ttk.Menubutton - fullName: tkinter.ttk.Notebook href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Notebook name: Notebook uid: tkinter.ttk.Notebook +- fullName: tkinter.ttk.OptionMenu + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.OptionMenu + name: OptionMenu + uid: tkinter.ttk.OptionMenu +- fullName: tkinter.ttk.PanedWindow + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.PanedWindow + name: PanedWindow + uid: tkinter.ttk.PanedWindow +- fullName: tkinter.ttk.Panedwindow + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Panedwindow + name: Panedwindow + uid: tkinter.ttk.Panedwindow - fullName: tkinter.ttk.Progressbar href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Progressbar name: Progressbar uid: tkinter.ttk.Progressbar +- fullName: tkinter.ttk.Radiobutton + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Radiobutton + name: Radiobutton + uid: tkinter.ttk.Radiobutton +- fullName: tkinter.ttk.Scale + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Scale + name: Scale + uid: tkinter.ttk.Scale +- fullName: tkinter.ttk.Scrollbar + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Scrollbar + name: Scrollbar + uid: tkinter.ttk.Scrollbar +- fullName: tkinter.ttk.Separator + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Separator + name: Separator + uid: tkinter.ttk.Separator +- fullName: tkinter.ttk.Sizegrip + href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Sizegrip + name: Sizegrip + uid: tkinter.ttk.Sizegrip - fullName: tkinter.ttk.Spinbox href: https://docs.python.org/3/library/tkinter.ttk.html#tkinter.ttk.Spinbox name: Spinbox @@ -33055,6 +35947,10 @@ references: href: https://docs.python.org/3/library/curses.html#curses.initscr name: initscr uid: curses.initscr +- fullName: curses.intrflush + href: https://docs.python.org/3/library/curses.html#curses.intrflush + name: intrflush + uid: curses.intrflush - fullName: curses.is_term_resized href: https://docs.python.org/3/library/curses.html#curses.is_term_resized name: is_term_resized @@ -39323,6 +42219,10 @@ references: href: https://docs.python.org/3/library/timeit.html#timeit.timeit name: timeit uid: timeit.timeit +- fullName: tkinter.NoDefaultRoot + href: https://docs.python.org/3/library/tkinter.html#tkinter.NoDefaultRoot + name: NoDefaultRoot + uid: tkinter.NoDefaultRoot - fullName: tkinter.Tcl href: https://docs.python.org/3/library/tkinter.html#tkinter.Tcl name: Tcl @@ -39375,6 +42275,30 @@ references: href: https://docs.python.org/3/library/tkinter.font.html#tkinter.font.nametofont name: nametofont uid: tkinter.font.nametofont +- fullName: tkinter.getboolean + href: https://docs.python.org/3/library/tkinter.html#tkinter.getboolean + name: getboolean + uid: tkinter.getboolean +- fullName: tkinter.getdouble + href: https://docs.python.org/3/library/tkinter.html#tkinter.getdouble + name: getdouble + uid: tkinter.getdouble +- fullName: tkinter.getint + href: https://docs.python.org/3/library/tkinter.html#tkinter.getint + name: getint + uid: tkinter.getint +- fullName: tkinter.image_names + href: https://docs.python.org/3/library/tkinter.html#tkinter.image_names + name: image_names + uid: tkinter.image_names +- fullName: tkinter.image_types + href: https://docs.python.org/3/library/tkinter.html#tkinter.image_types + name: image_types + uid: tkinter.image_types +- fullName: tkinter.mainloop + href: https://docs.python.org/3/library/tkinter.html#tkinter.mainloop + name: mainloop + uid: tkinter.mainloop - fullName: tkinter.messagebox.askokcancel href: https://docs.python.org/3/library/tkinter.messagebox.html#tkinter.messagebox.askokcancel name: askokcancel From d32de223f1b45a47e896b17b6d2a93c1ec02f0da Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Sun, 21 Jun 2026 18:08:51 +0000 Subject: [PATCH 07/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=613649&view=results --- xrefmap.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index 3a43795d..d5aa39ee 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -5827,6 +5827,10 @@ references: href: https://docs.python.org/3/library/tkinter.scrolledtext.html#tkinter.scrolledtext.ScrolledText.vbar name: vbar uid: tkinter.scrolledtext.ScrolledText.vbar +- fullName: tkinter.simpledialog.Dialog.result + href: https://docs.python.org/3/library/dialog.html#tkinter.simpledialog.Dialog.result + name: result + uid: tkinter.simpledialog.Dialog.result - fullName: tomllib.TOMLDecodeError.colno href: https://docs.python.org/3/library/tomllib.html#tomllib.TOMLDecodeError.colno name: colno From 5d8df42653719875f1f13565d078c294054da127 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Tue, 23 Jun 2026 18:07:13 +0000 Subject: [PATCH 08/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=613930&view=results --- xrefmap.yml | 120 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index d5aa39ee..ffb7566d 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -4411,6 +4411,50 @@ references: href: https://docs.python.org/3/library/os.html#os.stat_result.st_uid name: st_uid uid: os.stat_result.st_uid +- fullName: os.statvfs_result.f_bavail + href: https://docs.python.org/3/library/os.html#os.statvfs_result.f_bavail + name: f_bavail + uid: os.statvfs_result.f_bavail +- fullName: os.statvfs_result.f_bfree + href: https://docs.python.org/3/library/os.html#os.statvfs_result.f_bfree + name: f_bfree + uid: os.statvfs_result.f_bfree +- fullName: os.statvfs_result.f_blocks + href: https://docs.python.org/3/library/os.html#os.statvfs_result.f_blocks + name: f_blocks + uid: os.statvfs_result.f_blocks +- fullName: os.statvfs_result.f_bsize + href: https://docs.python.org/3/library/os.html#os.statvfs_result.f_bsize + name: f_bsize + uid: os.statvfs_result.f_bsize +- fullName: os.statvfs_result.f_favail + href: https://docs.python.org/3/library/os.html#os.statvfs_result.f_favail + name: f_favail + uid: os.statvfs_result.f_favail +- fullName: os.statvfs_result.f_ffree + href: https://docs.python.org/3/library/os.html#os.statvfs_result.f_ffree + name: f_ffree + uid: os.statvfs_result.f_ffree +- fullName: os.statvfs_result.f_files + href: https://docs.python.org/3/library/os.html#os.statvfs_result.f_files + name: f_files + uid: os.statvfs_result.f_files +- fullName: os.statvfs_result.f_flag + href: https://docs.python.org/3/library/os.html#os.statvfs_result.f_flag + name: f_flag + uid: os.statvfs_result.f_flag +- fullName: os.statvfs_result.f_frsize + href: https://docs.python.org/3/library/os.html#os.statvfs_result.f_frsize + name: f_frsize + uid: os.statvfs_result.f_frsize +- fullName: os.statvfs_result.f_fsid + href: https://docs.python.org/3/library/os.html#os.statvfs_result.f_fsid + name: f_fsid + uid: os.statvfs_result.f_fsid +- fullName: os.statvfs_result.f_namemax + href: https://docs.python.org/3/library/os.html#os.statvfs_result.f_namemax + name: f_namemax + uid: os.statvfs_result.f_namemax - fullName: os.terminal_size.columns href: https://docs.python.org/3/library/os.html#os.terminal_size.columns name: columns @@ -4419,6 +4463,26 @@ references: href: https://docs.python.org/3/library/os.html#os.terminal_size.lines name: lines uid: os.terminal_size.lines +- fullName: os.uname_result.machine + href: https://docs.python.org/3/library/os.html#os.uname_result.machine + name: machine + uid: os.uname_result.machine +- fullName: os.uname_result.nodename + href: https://docs.python.org/3/library/os.html#os.uname_result.nodename + name: nodename + uid: os.uname_result.nodename +- fullName: os.uname_result.release + href: https://docs.python.org/3/library/os.html#os.uname_result.release + name: release + uid: os.uname_result.release +- fullName: os.uname_result.sysname + href: https://docs.python.org/3/library/os.html#os.uname_result.sysname + name: sysname + uid: os.uname_result.sysname +- fullName: os.uname_result.version + href: https://docs.python.org/3/library/os.html#os.uname_result.version + name: version + uid: os.uname_result.version - fullName: pathlib.Path.info href: https://docs.python.org/3/library/pathlib.html#pathlib.Path.info name: info @@ -25411,6 +25475,54 @@ references: href: https://docs.python.org/3/library/os.html#os.SPLICE_F_NONBLOCK name: SPLICE_F_NONBLOCK uid: os.SPLICE_F_NONBLOCK +- fullName: os.ST_APPEND + href: https://docs.python.org/3/library/os.html#os.ST_APPEND + name: ST_APPEND + uid: os.ST_APPEND +- fullName: os.ST_IMMUTABLE + href: https://docs.python.org/3/library/os.html#os.ST_IMMUTABLE + name: ST_IMMUTABLE + uid: os.ST_IMMUTABLE +- fullName: os.ST_MANDLOCK + href: https://docs.python.org/3/library/os.html#os.ST_MANDLOCK + name: ST_MANDLOCK + uid: os.ST_MANDLOCK +- fullName: os.ST_NOATIME + href: https://docs.python.org/3/library/os.html#os.ST_NOATIME + name: ST_NOATIME + uid: os.ST_NOATIME +- fullName: os.ST_NODEV + href: https://docs.python.org/3/library/os.html#os.ST_NODEV + name: ST_NODEV + uid: os.ST_NODEV +- fullName: os.ST_NODIRATIME + href: https://docs.python.org/3/library/os.html#os.ST_NODIRATIME + name: ST_NODIRATIME + uid: os.ST_NODIRATIME +- fullName: os.ST_NOEXEC + href: https://docs.python.org/3/library/os.html#os.ST_NOEXEC + name: ST_NOEXEC + uid: os.ST_NOEXEC +- fullName: os.ST_NOSUID + href: https://docs.python.org/3/library/os.html#os.ST_NOSUID + name: ST_NOSUID + uid: os.ST_NOSUID +- fullName: os.ST_RDONLY + href: https://docs.python.org/3/library/os.html#os.ST_RDONLY + name: ST_RDONLY + uid: os.ST_RDONLY +- fullName: os.ST_RELATIME + href: https://docs.python.org/3/library/os.html#os.ST_RELATIME + name: ST_RELATIME + uid: os.ST_RELATIME +- fullName: os.ST_SYNCHRONOUS + href: https://docs.python.org/3/library/os.html#os.ST_SYNCHRONOUS + name: ST_SYNCHRONOUS + uid: os.ST_SYNCHRONOUS +- fullName: os.ST_WRITE + href: https://docs.python.org/3/library/os.html#os.ST_WRITE + name: ST_WRITE + uid: os.ST_WRITE - fullName: os.TFD_CLOEXEC href: https://docs.python.org/3/library/os.html#os.TFD_CLOEXEC name: TFD_CLOEXEC @@ -32931,10 +33043,18 @@ references: href: https://docs.python.org/3/library/os.html#os.stat_result name: stat_result uid: os.stat_result +- fullName: os.statvfs_result + href: https://docs.python.org/3/library/os.html#os.statvfs_result + name: statvfs_result + uid: os.statvfs_result - fullName: os.terminal_size href: https://docs.python.org/3/library/os.html#os.terminal_size name: terminal_size uid: os.terminal_size +- fullName: os.uname_result + href: https://docs.python.org/3/library/os.html#os.uname_result + name: uname_result + uid: os.uname_result - fullName: pathlib.Path href: https://docs.python.org/3/library/pathlib.html#pathlib.Path name: Path From b10b710e4b001626d627d0949df62680764e8709 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Sun, 5 Jul 2026 18:06:48 +0000 Subject: [PATCH 09/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=615573&view=results --- xrefmap.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index ffb7566d..cfafd58e 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -3227,10 +3227,22 @@ references: href: https://docs.python.org/3/library/http.server.html#http.server.CGIHTTPRequestHandler.cgi_directories name: cgi_directories uid: http.server.CGIHTTPRequestHandler.cgi_directories +- fullName: http.server.HTTPServer.server_name + href: https://docs.python.org/3/library/http.server.html#http.server.HTTPServer.server_name + name: server_name + uid: http.server.HTTPServer.server_name +- fullName: http.server.HTTPServer.server_port + href: https://docs.python.org/3/library/http.server.html#http.server.HTTPServer.server_port + name: server_port + uid: http.server.HTTPServer.server_port - fullName: http.server.SimpleHTTPRequestHandler.extensions_map href: https://docs.python.org/3/library/http.server.html#http.server.SimpleHTTPRequestHandler.extensions_map name: extensions_map uid: http.server.SimpleHTTPRequestHandler.extensions_map +- fullName: http.server.SimpleHTTPRequestHandler.index_pages + href: https://docs.python.org/3/library/http.server.html#http.server.SimpleHTTPRequestHandler.index_pages + name: index_pages + uid: http.server.SimpleHTTPRequestHandler.index_pages - fullName: http.server.SimpleHTTPRequestHandler.server_version href: https://docs.python.org/3/library/http.server.html#http.server.SimpleHTTPRequestHandler.server_version name: server_version @@ -12051,6 +12063,14 @@ references: href: https://docs.python.org/3/library/http.server.html#http.server.SimpleHTTPRequestHandler.do_HEAD name: do_HEAD uid: http.server.SimpleHTTPRequestHandler.do_HEAD +- fullName: http.server.SimpleHTTPRequestHandler.guess_type + href: https://docs.python.org/3/library/http.server.html#http.server.SimpleHTTPRequestHandler.guess_type + name: guess_type + uid: http.server.SimpleHTTPRequestHandler.guess_type +- fullName: http.server.SimpleHTTPRequestHandler.list_directory + href: https://docs.python.org/3/library/http.server.html#http.server.SimpleHTTPRequestHandler.list_directory + name: list_directory + uid: http.server.SimpleHTTPRequestHandler.list_directory - fullName: imaplib.IMAP4.Idler.burst href: https://docs.python.org/3/library/imaplib.html#imaplib.IMAP4.Idler.burst name: burst From 92f1ccfe2df36a95c62c99004d0d86cc3bca5328 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Wed, 15 Jul 2026 18:07:26 +0000 Subject: [PATCH 10/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=617369&view=results --- xrefmap.yml | 208 +++++++++++++++++++++++++++------------------------- 1 file changed, 108 insertions(+), 100 deletions(-) diff --git a/xrefmap.yml b/xrefmap.yml index cfafd58e..959f9f69 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -487,6 +487,10 @@ references: href: https://docs.python.org/3/library/curses.html#curses.error name: error uid: curses.error +- fullName: curses.panel.error + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.error + name: error + uid: curses.panel.error - fullName: dataclasses.FrozenInstanceError href: https://docs.python.org/3/library/dataclasses.html#dataclasses.FrozenInstanceError name: FrozenInstanceError @@ -9327,54 +9331,54 @@ references: href: https://docs.python.org/3/library/ctypes.html#ctypes._CData.in_dll name: in_dll uid: ctypes._CData.in_dll -- fullName: curses.panel.Panel.above - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.above +- fullName: curses.panel.panel.above + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.above name: above - uid: curses.panel.Panel.above -- fullName: curses.panel.Panel.below - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.below + uid: curses.panel.panel.above +- fullName: curses.panel.panel.below + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.below name: below - uid: curses.panel.Panel.below -- fullName: curses.panel.Panel.bottom - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.bottom + uid: curses.panel.panel.below +- fullName: curses.panel.panel.bottom + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.bottom name: bottom - uid: curses.panel.Panel.bottom -- fullName: curses.panel.Panel.hidden - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.hidden + uid: curses.panel.panel.bottom +- fullName: curses.panel.panel.hidden + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.hidden name: hidden - uid: curses.panel.Panel.hidden -- fullName: curses.panel.Panel.hide - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.hide + uid: curses.panel.panel.hidden +- fullName: curses.panel.panel.hide + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.hide name: hide - uid: curses.panel.Panel.hide -- fullName: curses.panel.Panel.move - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.move + uid: curses.panel.panel.hide +- fullName: curses.panel.panel.move + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.move name: move - uid: curses.panel.Panel.move -- fullName: curses.panel.Panel.replace - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.replace + uid: curses.panel.panel.move +- fullName: curses.panel.panel.replace + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.replace name: replace - uid: curses.panel.Panel.replace -- fullName: curses.panel.Panel.set_userptr - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.set_userptr + uid: curses.panel.panel.replace +- fullName: curses.panel.panel.set_userptr + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.set_userptr name: set_userptr - uid: curses.panel.Panel.set_userptr -- fullName: curses.panel.Panel.show - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.show + uid: curses.panel.panel.set_userptr +- fullName: curses.panel.panel.show + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.show name: show - uid: curses.panel.Panel.show -- fullName: curses.panel.Panel.top - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.top + uid: curses.panel.panel.show +- fullName: curses.panel.panel.top + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.top name: top - uid: curses.panel.Panel.top -- fullName: curses.panel.Panel.userptr - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.userptr + uid: curses.panel.panel.top +- fullName: curses.panel.panel.userptr + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.userptr name: userptr - uid: curses.panel.Panel.userptr -- fullName: curses.panel.Panel.window - href: https://docs.python.org/3/library/curses.panel.html#curses.panel.Panel.window + uid: curses.panel.panel.userptr +- fullName: curses.panel.panel.window + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel.window name: window - uid: curses.panel.Panel.window + uid: curses.panel.panel.window - fullName: curses.textpad.Textbox.do_command href: https://docs.python.org/3/library/curses.html#curses.textpad.Textbox.do_command name: do_command @@ -28599,70 +28603,6 @@ references: href: https://docs.python.org/3/library/token.html#token.tok_name name: tok_name uid: token.tok_name -- fullName: types.AsyncGeneratorType - href: https://docs.python.org/3/library/types.html#types.AsyncGeneratorType - name: AsyncGeneratorType - uid: types.AsyncGeneratorType -- fullName: types.BuiltinFunctionType - href: https://docs.python.org/3/library/types.html#types.BuiltinFunctionType - name: BuiltinFunctionType - uid: types.BuiltinFunctionType -- fullName: types.BuiltinMethodType - href: https://docs.python.org/3/library/types.html#types.BuiltinMethodType - name: BuiltinMethodType - uid: types.BuiltinMethodType -- fullName: types.CellType - href: https://docs.python.org/3/library/types.html#types.CellType - name: CellType - uid: types.CellType -- fullName: types.ClassMethodDescriptorType - href: https://docs.python.org/3/library/types.html#types.ClassMethodDescriptorType - name: ClassMethodDescriptorType - uid: types.ClassMethodDescriptorType -- fullName: types.CoroutineType - href: https://docs.python.org/3/library/types.html#types.CoroutineType - name: CoroutineType - uid: types.CoroutineType -- fullName: types.FrameType - href: https://docs.python.org/3/library/types.html#types.FrameType - name: FrameType - uid: types.FrameType -- fullName: types.FunctionType - href: https://docs.python.org/3/library/types.html#types.FunctionType - name: FunctionType - uid: types.FunctionType -- fullName: types.GeneratorType - href: https://docs.python.org/3/library/types.html#types.GeneratorType - name: GeneratorType - uid: types.GeneratorType -- fullName: types.GetSetDescriptorType - href: https://docs.python.org/3/library/types.html#types.GetSetDescriptorType - name: GetSetDescriptorType - uid: types.GetSetDescriptorType -- fullName: types.LambdaType - href: https://docs.python.org/3/library/types.html#types.LambdaType - name: LambdaType - uid: types.LambdaType -- fullName: types.MemberDescriptorType - href: https://docs.python.org/3/library/types.html#types.MemberDescriptorType - name: MemberDescriptorType - uid: types.MemberDescriptorType -- fullName: types.MethodDescriptorType - href: https://docs.python.org/3/library/types.html#types.MethodDescriptorType - name: MethodDescriptorType - uid: types.MethodDescriptorType -- fullName: types.MethodType - href: https://docs.python.org/3/library/types.html#types.MethodType - name: MethodType - uid: types.MethodType -- fullName: types.MethodWrapperType - href: https://docs.python.org/3/library/types.html#types.MethodWrapperType - name: MethodWrapperType - uid: types.MethodWrapperType -- fullName: types.WrapperDescriptorType - href: https://docs.python.org/3/library/types.html#types.WrapperDescriptorType - name: WrapperDescriptorType - uid: types.WrapperDescriptorType - fullName: typing.Annotated href: https://docs.python.org/3/library/typing.html#typing.Annotated name: Annotated @@ -31987,6 +31927,10 @@ references: href: https://docs.python.org/3/library/ctypes.html#ctypes.py_object name: py_object uid: ctypes.py_object +- fullName: curses.panel.panel + href: https://docs.python.org/3/library/curses.panel.html#curses.panel.panel + name: panel + uid: curses.panel.panel - fullName: curses.textpad.Textbox href: https://docs.python.org/3/library/curses.html#curses.textpad.Textbox name: Textbox @@ -34019,26 +33963,86 @@ references: href: https://docs.python.org/3/library/functions.html#type name: type uid: type +- fullName: types.AsyncGeneratorType + href: https://docs.python.org/3/library/types.html#types.AsyncGeneratorType + name: AsyncGeneratorType + uid: types.AsyncGeneratorType +- fullName: types.BuiltinFunctionType + href: https://docs.python.org/3/library/types.html#types.BuiltinFunctionType + name: BuiltinFunctionType + uid: types.BuiltinFunctionType +- fullName: types.BuiltinMethodType + href: https://docs.python.org/3/library/types.html#types.BuiltinMethodType + name: BuiltinMethodType + uid: types.BuiltinMethodType - fullName: types.CapsuleType href: https://docs.python.org/3/library/types.html#types.CapsuleType name: CapsuleType uid: types.CapsuleType +- fullName: types.CellType + href: https://docs.python.org/3/library/types.html#types.CellType + name: CellType + uid: types.CellType +- fullName: types.ClassMethodDescriptorType + href: https://docs.python.org/3/library/types.html#types.ClassMethodDescriptorType + name: ClassMethodDescriptorType + uid: types.ClassMethodDescriptorType - fullName: types.CodeType href: https://docs.python.org/3/library/types.html#types.CodeType name: CodeType uid: types.CodeType +- fullName: types.CoroutineType + href: https://docs.python.org/3/library/types.html#types.CoroutineType + name: CoroutineType + uid: types.CoroutineType - fullName: types.EllipsisType href: https://docs.python.org/3/library/types.html#types.EllipsisType name: EllipsisType uid: types.EllipsisType +- fullName: types.FrameType + href: https://docs.python.org/3/library/types.html#types.FrameType + name: FrameType + uid: types.FrameType +- fullName: types.FunctionType + href: https://docs.python.org/3/library/types.html#types.FunctionType + name: FunctionType + uid: types.FunctionType +- fullName: types.GeneratorType + href: https://docs.python.org/3/library/types.html#types.GeneratorType + name: GeneratorType + uid: types.GeneratorType - fullName: types.GenericAlias href: https://docs.python.org/3/library/types.html#types.GenericAlias name: GenericAlias uid: types.GenericAlias +- fullName: types.GetSetDescriptorType + href: https://docs.python.org/3/library/types.html#types.GetSetDescriptorType + name: GetSetDescriptorType + uid: types.GetSetDescriptorType +- fullName: types.LambdaType + href: https://docs.python.org/3/library/types.html#types.LambdaType + name: LambdaType + uid: types.LambdaType - fullName: types.MappingProxyType href: https://docs.python.org/3/library/types.html#types.MappingProxyType name: MappingProxyType uid: types.MappingProxyType +- fullName: types.MemberDescriptorType + href: https://docs.python.org/3/library/types.html#types.MemberDescriptorType + name: MemberDescriptorType + uid: types.MemberDescriptorType +- fullName: types.MethodDescriptorType + href: https://docs.python.org/3/library/types.html#types.MethodDescriptorType + name: MethodDescriptorType + uid: types.MethodDescriptorType +- fullName: types.MethodType + href: https://docs.python.org/3/library/types.html#types.MethodType + name: MethodType + uid: types.MethodType +- fullName: types.MethodWrapperType + href: https://docs.python.org/3/library/types.html#types.MethodWrapperType + name: MethodWrapperType + uid: types.MethodWrapperType - fullName: types.ModuleType href: https://docs.python.org/3/library/types.html#types.ModuleType name: ModuleType @@ -34063,6 +34067,10 @@ references: href: https://docs.python.org/3/library/types.html#types.UnionType name: UnionType uid: types.UnionType +- fullName: types.WrapperDescriptorType + href: https://docs.python.org/3/library/types.html#types.WrapperDescriptorType + name: WrapperDescriptorType + uid: types.WrapperDescriptorType - fullName: typing.AbstractSet href: https://docs.python.org/3/library/typing.html#typing.AbstractSet name: AbstractSet From 48e474567ffb2735665693b4dcdb4093292fe2c6 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Thu, 23 Jul 2026 18:07:00 +0000 Subject: [PATCH 11/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=619101&view=results --- xrefmap.yml | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index 959f9f69..abe7095a 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -24551,6 +24551,94 @@ references: href: https://docs.python.org/3/library/logging.html#logging.raiseExceptions name: raiseExceptions uid: logging.raiseExceptions +- fullName: lzma.CHECK_CRC32 + href: https://docs.python.org/3/library/lzma.html#lzma.CHECK_CRC32 + name: CHECK_CRC32 + uid: lzma.CHECK_CRC32 +- fullName: lzma.CHECK_CRC64 + href: https://docs.python.org/3/library/lzma.html#lzma.CHECK_CRC64 + name: CHECK_CRC64 + uid: lzma.CHECK_CRC64 +- fullName: lzma.CHECK_ID_MAX + href: https://docs.python.org/3/library/lzma.html#lzma.CHECK_ID_MAX + name: CHECK_ID_MAX + uid: lzma.CHECK_ID_MAX +- fullName: lzma.CHECK_NONE + href: https://docs.python.org/3/library/lzma.html#lzma.CHECK_NONE + name: CHECK_NONE + uid: lzma.CHECK_NONE +- fullName: lzma.CHECK_SHA256 + href: https://docs.python.org/3/library/lzma.html#lzma.CHECK_SHA256 + name: CHECK_SHA256 + uid: lzma.CHECK_SHA256 +- fullName: lzma.CHECK_UNKNOWN + href: https://docs.python.org/3/library/lzma.html#lzma.CHECK_UNKNOWN + name: CHECK_UNKNOWN + uid: lzma.CHECK_UNKNOWN +- fullName: lzma.FILTER_DELTA + href: https://docs.python.org/3/library/lzma.html#lzma.FILTER_DELTA + name: FILTER_DELTA + uid: lzma.FILTER_DELTA +- fullName: lzma.FILTER_LZMA1 + href: https://docs.python.org/3/library/lzma.html#lzma.FILTER_LZMA1 + name: FILTER_LZMA1 + uid: lzma.FILTER_LZMA1 +- fullName: lzma.FILTER_LZMA2 + href: https://docs.python.org/3/library/lzma.html#lzma.FILTER_LZMA2 + name: FILTER_LZMA2 + uid: lzma.FILTER_LZMA2 +- fullName: lzma.FORMAT_ALONE + href: https://docs.python.org/3/library/lzma.html#lzma.FORMAT_ALONE + name: FORMAT_ALONE + uid: lzma.FORMAT_ALONE +- fullName: lzma.FORMAT_AUTO + href: https://docs.python.org/3/library/lzma.html#lzma.FORMAT_AUTO + name: FORMAT_AUTO + uid: lzma.FORMAT_AUTO +- fullName: lzma.FORMAT_RAW + href: https://docs.python.org/3/library/lzma.html#lzma.FORMAT_RAW + name: FORMAT_RAW + uid: lzma.FORMAT_RAW +- fullName: lzma.FORMAT_XZ + href: https://docs.python.org/3/library/lzma.html#lzma.FORMAT_XZ + name: FORMAT_XZ + uid: lzma.FORMAT_XZ +- fullName: lzma.MF_BT2 + href: https://docs.python.org/3/library/lzma.html#lzma.MF_BT2 + name: MF_BT2 + uid: lzma.MF_BT2 +- fullName: lzma.MF_BT3 + href: https://docs.python.org/3/library/lzma.html#lzma.MF_BT3 + name: MF_BT3 + uid: lzma.MF_BT3 +- fullName: lzma.MF_BT4 + href: https://docs.python.org/3/library/lzma.html#lzma.MF_BT4 + name: MF_BT4 + uid: lzma.MF_BT4 +- fullName: lzma.MF_HC3 + href: https://docs.python.org/3/library/lzma.html#lzma.MF_HC3 + name: MF_HC3 + uid: lzma.MF_HC3 +- fullName: lzma.MF_HC4 + href: https://docs.python.org/3/library/lzma.html#lzma.MF_HC4 + name: MF_HC4 + uid: lzma.MF_HC4 +- fullName: lzma.MODE_FAST + href: https://docs.python.org/3/library/lzma.html#lzma.MODE_FAST + name: MODE_FAST + uid: lzma.MODE_FAST +- fullName: lzma.MODE_NORMAL + href: https://docs.python.org/3/library/lzma.html#lzma.MODE_NORMAL + name: MODE_NORMAL + uid: lzma.MODE_NORMAL +- fullName: lzma.PRESET_DEFAULT + href: https://docs.python.org/3/library/lzma.html#lzma.PRESET_DEFAULT + name: PRESET_DEFAULT + uid: lzma.PRESET_DEFAULT +- fullName: lzma.PRESET_EXTREME + href: https://docs.python.org/3/library/lzma.html#lzma.PRESET_EXTREME + name: PRESET_EXTREME + uid: lzma.PRESET_EXTREME - fullName: marshal.version href: https://docs.python.org/3/library/marshal.html#marshal.version name: version From 36600e2f1aeef4e8ee475b0686b6c2dd3267ab5a Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Tue, 28 Jul 2026 18:10:23 +0000 Subject: [PATCH 12/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=619655&view=results --- xrefmap.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index abe7095a..265bf370 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -10511,6 +10511,10 @@ references: href: https://docs.python.org/3/library/stdtypes.html#dict.values name: values uid: dict.values +- fullName: difflib.Differ.__init__ + href: https://docs.python.org/3/library/difflib.html#difflib.Differ.__init__ + name: __init__ + uid: difflib.Differ.__init__ - fullName: difflib.Differ.compare href: https://docs.python.org/3/library/difflib.html#difflib.Differ.compare name: compare @@ -27875,6 +27879,10 @@ references: href: https://docs.python.org/3/library/test.html#test.support.is_wasi name: is_wasi uid: test.support.is_wasi +- fullName: test.support.isolation.runningInSubprocess + href: https://docs.python.org/3/library/test.html#test.support.isolation.runningInSubprocess + name: runningInSubprocess + uid: test.support.isolation.runningInSubprocess - fullName: test.support.max_memuse href: https://docs.python.org/3/library/test.html#test.support.max_memuse name: max_memuse @@ -41943,6 +41951,10 @@ references: href: https://docs.python.org/3/library/test.html#test.support.is_resource_enabled name: is_resource_enabled uid: test.support.is_resource_enabled +- fullName: test.support.isolation.runInSubprocess + href: https://docs.python.org/3/library/test.html#test.support.isolation.runInSubprocess + name: runInSubprocess + uid: test.support.isolation.runInSubprocess - fullName: test.support.linked_to_musl href: https://docs.python.org/3/library/test.html#test.support.linked_to_musl name: linked_to_musl From f55da0c3fd0aedf9a8bb3e6efaa566631b0f911d Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Thu, 13 Aug 2026 18:08:44 +0000 Subject: [PATCH 13/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=622374&view=results --- xrefmap.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index 265bf370..a17aece1 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -2043,6 +2043,10 @@ references: href: https://docs.python.org/3/library/csv.html#csv.DictReader.fieldnames name: fieldnames uid: csv.DictReader.fieldnames +- fullName: csv.Sniffer.preferred + href: https://docs.python.org/3/library/csv.html#csv.Sniffer.preferred + name: preferred + uid: csv.Sniffer.preferred - fullName: csv.csvreader.dialect href: https://docs.python.org/3/library/csv.html#csv.csvreader.dialect name: dialect From ba3de8fb34723ae0761413815dc4c56228d868d0 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Mon, 24 Aug 2026 18:07:01 +0000 Subject: [PATCH 14/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=623960&view=results --- .../msal.application.ClientApplication.yml | 61 ++++++++++++- ...lication.ConfidentialClientApplication.yml | 88 ++++++++++++++++++- ...managed_identity.ManagedIdentityClient.yml | 5 +- 3 files changed, 145 insertions(+), 9 deletions(-) diff --git a/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml b/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml index 3fba9505..bff15d52 100644 --- a/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml +++ b/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml @@ -113,7 +113,11 @@ constructor: \ \"linenos\": false} -->\n\n````default\n\n {\n \"aud\": the_token_endpoint,\n\ \ \"iss\": self.client_id,\n \"sub\": same_as_issuer,\n \"\ exp\": now + 10_min,\n \"iat\": now,\n \"jti\": a_random_uuid\n\ - \ }\n ````" + \ }\n ````\n\n\n> [!NOTE]\n> This constructor client_claims (a dict signed\ + \ into the\n>\n> client-assertion JWT) is distinct from the per-request\n>\n\ + > forwarded_client_claims parameter (a JSON string of\n>\n> client-originated\ + \ claims forwarded in the token request) accepted\n>\n> by the token-acquisition\ + \ methods.\n>" defaultValue: None types: - @@ -444,7 +448,7 @@ methods: name: acquire_token_by_authorization_code summary: The second half of the Authorization Code Grant. signature: acquire_token_by_authorization_code(code, scopes, redirect_uri=None, - nonce=None, claims_challenge=None, **kwargs) + nonce=None, claims_challenge=None, forwarded_client_claims=None, **kwargs) parameters: - name: code description: The authorization code returned from Authorization Server. @@ -499,6 +503,31 @@ methods: It is a string of a JSON object which contains lists of claims being requested from these locations.' defaultValue: None + - name: forwarded_client_claims + description: 'Optional. A JSON string of *client-originated* claims to include + in + + the token request. Unlike `claims_challenge` (server-issued, which + + bypasses the cache), tokens acquired with `forwarded_client_claims` + + **are cached** and keyed on the claims value. Send the *same* value on + + every request that should share the cached token; omitting or changing + + it routes to a different cache entry (a cache miss), so use stable, + + non-dynamic values. The value is merged into the standard OAuth + + `claims` request parameter sent on the wire. + + + Not to be confused with the constructor `client_claims` parameter + + (a `dict` of extra claims signed into the client-assertion JWT).' + defaultValue: None + types: + - - name: redirect_uri defaultValue: None return: @@ -619,7 +648,7 @@ methods: token cache look-up, then this method is easier and recommended.' signature: acquire_token_silent(scopes, account, authority=None, force_refresh=False, - claims_challenge=None, auth_scheme=None, **kwargs) + claims_challenge=None, forwarded_client_claims=None, auth_scheme=None, **kwargs) parameters: - name: scopes isRequired: true @@ -631,6 +660,8 @@ methods: defaultValue: 'False' - name: claims_challenge defaultValue: None + - name: forwarded_client_claims + defaultValue: None - name: auth_scheme defaultValue: None return: @@ -658,7 +689,7 @@ methods: Otherwise, the other method is recommended.' signature: acquire_token_silent_with_error(scopes, account, authority=None, force_refresh=False, - claims_challenge=None, auth_scheme=None, **kwargs) + claims_challenge=None, forwarded_client_claims=None, auth_scheme=None, **kwargs) parameters: - name: scopes description: '(Required) @@ -693,6 +724,28 @@ methods: It is a string of a JSON object which contains lists of claims being requested from these locations.' defaultValue: None + - name: forwarded_client_claims + description: 'Optional. A JSON string of *client-originated* claims, applied only + + when no cached token is found and a network request is made. Unlike + + `claims_challenge` (server-issued, which bypasses the cache), tokens + + acquired with `forwarded_client_claims` **are cached** and keyed on + + the claims value. Send the *same* value on every call that should + + reuse the cached token; different or omitted values route to separate + + cache entries, so use stable, non-dynamic values. + + + Not to be confused with the constructor `client_claims` parameter + + (a `dict` of extra claims signed into the client-assertion JWT).' + defaultValue: None + types: + - - name: auth_scheme description: 'You can provide an `msal.auth_scheme.PopAuthScheme` object diff --git a/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml b/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml index 8d9107db..b35288b9 100644 --- a/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml +++ b/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml @@ -113,7 +113,11 @@ constructor: \ \"linenos\": false} -->\n\n````default\n\n {\n \"aud\": the_token_endpoint,\n\ \ \"iss\": self.client_id,\n \"sub\": same_as_issuer,\n \"\ exp\": now + 10_min,\n \"iat\": now,\n \"jti\": a_random_uuid\n\ - \ }\n ````" + \ }\n ````\n\n\n> [!NOTE]\n> This constructor client_claims (a dict signed\ + \ into the\n>\n> client-assertion JWT) is distinct from the per-request\n>\n\ + > forwarded_client_claims parameter (a JSON string of\n>\n> client-originated\ + \ claims forwarded in the token request) accepted\n>\n> by the token-acquisition\ + \ methods.\n>" defaultValue: None types: - @@ -382,7 +386,8 @@ methods: a specific user.' signature: acquire_token_by_user_federated_identity_credential(scopes, assertion, - username=None, user_object_id=None, claims_challenge=None, **kwargs) + username=None, user_object_id=None, claims_challenge=None, forwarded_client_claims=None, + **kwargs) parameters: - name: scopes description: Scopes required by downstream API (a resource). @@ -422,6 +427,31 @@ methods: It is a string of a JSON object which contains lists of claims being requested from these locations.' defaultValue: None + - name: forwarded_client_claims + description: 'Optional. A JSON string of *client-originated* claims to include + in + + the token request. Unlike `claims_challenge` (server-issued, which + + bypasses the cache), tokens acquired with `forwarded_client_claims` + + **are cached** and keyed on the claims value. Send the *same* value on + + every request that should share the cached token; omitting or changing + + it routes to a different cache entry (a cache miss), so use stable, + + non-dynamic values. The value is merged into the standard OAuth + + `claims` request parameter sent on the wire. + + + Not to be confused with the constructor `client_claims` parameter + + (a `dict` of extra claims signed into the client-assertion JWT).' + defaultValue: None + types: + - return: description: "A dict representing the json response from Microsoft Entra:\n\n\ * A successful response would contain \"access_token\" key, \n\n* an error response\ @@ -435,7 +465,7 @@ methods: and only send request to Identity Provider when cache misses.' signature: acquire_token_for_client(scopes, claims_challenge=None, fmi_path=None, - **kwargs) + forwarded_client_claims=None, **kwargs) parameters: - name: scopes description: '(Required) @@ -469,6 +499,31 @@ methods: defaultValue: None types: - + - name: forwarded_client_claims + description: 'Optional. A JSON string of *client-originated* claims to include + in + + the token request. Unlike `claims_challenge` (server-issued, which + + bypasses the cache), tokens acquired with `forwarded_client_claims` + + **are cached** and keyed on the claims value. Send the *same* value on + + every request that should share the cached token; omitting or changing + + it routes to a different cache entry (a cache miss), so use stable, + + non-dynamic values. The value is merged into the standard OAuth + + `claims` request parameter sent on the wire. + + + Not to be confused with the constructor `client_claims` parameter + + (a `dict` of extra claims signed into the client-assertion JWT).' + defaultValue: None + types: + - return: description: "A dict representing the json response from Microsoft Entra:\n\n\ * A successful response would contain \"access_token\" key, \n\n* an error response\ @@ -496,7 +551,7 @@ methods: [https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-on-behalf-of-flow#gaining-consent-for-the-middle-tier-application](https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-on-behalf-of-flow#gaining-consent-for-the-middle-tier-application)' signature: acquire_token_on_behalf_of(user_assertion, scopes, claims_challenge=None, - **kwargs) + forwarded_client_claims=None, **kwargs) parameters: - name: user_assertion description: The incoming token already received by this app @@ -520,6 +575,31 @@ methods: It is a string of a JSON object which contains lists of claims being requested from these locations.' defaultValue: None + - name: forwarded_client_claims + description: 'Optional. A JSON string of *client-originated* claims to include + in + + the token request. Unlike `claims_challenge` (server-issued, which + + bypasses the cache), tokens acquired with `forwarded_client_claims` + + **are cached** and keyed on the claims value. Send the *same* value on + + every request that should share the cached token; omitting or changing + + it routes to a different cache entry (a cache miss), so use stable, + + non-dynamic values. The value is merged into the standard OAuth + + `claims` request parameter sent on the wire. + + + Not to be confused with the constructor `client_claims` parameter + + (a `dict` of extra claims signed into the client-assertion JWT).' + defaultValue: None + types: + - return: description: "A dict representing the json response from Microsoft Entra:\n\n\ * A successful response would contain \"access_token\" key, \n\n* an error response\ diff --git a/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml b/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml index 5baaa7b7..6fa964ce 100644 --- a/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml +++ b/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml @@ -55,7 +55,10 @@ constructor: \ retries = Retry(total=3, backoff_factor=0.1, status_forcelist=[\n \ \ 429, 500, 501, 502, 503, 504])\n s.mount('https://', HTTPAdapter(max_retries=retries))\n\ \ managed_identity = ...\n client = msal.ManagedIdentityClient(managed_identity,\ - \ http_client=s)\n ````" + \ http_client=s)\n ````\n\nFor Service Fabric managed identity, `http_client`\ + \ must be a\n`requests.Session` using the standard `requests.adapters.HTTPAdapter`.\n\ + MSAL derives a separate session for the Service Fabric endpoint so that\nits\ + \ certificate thumbprint can be validated before the Secret header is sent." isRequired: true - name: token_cache description: 'Optional. It accepts a instance to store From 1c89b1b7ca178f294093250af28bef3130a64939 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Sun, 30 Aug 2026 18:07:03 +0000 Subject: [PATCH 15/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=624892&view=results --- xrefmap.yml | 344 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 344 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index a17aece1..4482e554 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -1191,6 +1191,10 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.SyntaxErr name: SyntaxErr uid: xml.dom.SyntaxErr +- fullName: xml.dom.ValidationErr + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.ValidationErr + name: ValidationErr + uid: xml.dom.ValidationErr - fullName: xml.dom.WrongDocumentErr href: https://docs.python.org/3/library/xml.dom.html#xml.dom.WrongDocumentErr name: WrongDocumentErr @@ -3259,6 +3263,10 @@ references: href: https://docs.python.org/3/library/imaplib.html#imaplib.IMAP4.PROTOCOL_VERSION name: PROTOCOL_VERSION uid: imaplib.IMAP4.PROTOCOL_VERSION +- fullName: imaplib.IMAP4.capabilities + href: https://docs.python.org/3/library/imaplib.html#imaplib.IMAP4.capabilities + name: capabilities + uid: imaplib.IMAP4.capabilities - fullName: imaplib.IMAP4.debug href: https://docs.python.org/3/library/imaplib.html#imaplib.IMAP4.debug name: debug @@ -6647,6 +6655,10 @@ references: href: https://docs.python.org/3/library/wsgiref.html#wsgiref.handlers.BaseHandler.wsgi_run_once name: wsgi_run_once uid: wsgiref.handlers.BaseHandler.wsgi_run_once +- fullName: xml.dom.Attr.isId + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Attr.isId + name: isId + uid: xml.dom.Attr.isId - fullName: xml.dom.Attr.localName href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Attr.localName name: localName @@ -6655,22 +6667,54 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Attr.name name: name uid: xml.dom.Attr.name +- fullName: xml.dom.Attr.ownerElement + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Attr.ownerElement + name: ownerElement + uid: xml.dom.Attr.ownerElement - fullName: xml.dom.Attr.prefix href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Attr.prefix name: prefix uid: xml.dom.Attr.prefix +- fullName: xml.dom.Attr.specified + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Attr.specified + name: specified + uid: xml.dom.Attr.specified - fullName: xml.dom.Attr.value href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Attr.value name: value uid: xml.dom.Attr.value +- fullName: xml.dom.CharacterData.data + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.CharacterData.data + name: data + uid: xml.dom.CharacterData.data +- fullName: xml.dom.CharacterData.length + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.CharacterData.length + name: length + uid: xml.dom.CharacterData.length - fullName: xml.dom.Comment.data href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Comment.data name: data uid: xml.dom.Comment.data +- fullName: xml.dom.Document.doctype + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.doctype + name: doctype + uid: xml.dom.Document.doctype - fullName: xml.dom.Document.documentElement href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.documentElement name: documentElement uid: xml.dom.Document.documentElement +- fullName: xml.dom.Document.documentURI + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.documentURI + name: documentURI + uid: xml.dom.Document.documentURI +- fullName: xml.dom.Document.implementation + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.implementation + name: implementation + uid: xml.dom.Document.implementation +- fullName: xml.dom.Document.strictErrorChecking + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.strictErrorChecking + name: strictErrorChecking + uid: xml.dom.Document.strictErrorChecking - fullName: xml.dom.DocumentType.entities href: https://docs.python.org/3/library/xml.dom.html#xml.dom.DocumentType.entities name: entities @@ -6699,6 +6743,18 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Element.tagName name: tagName uid: xml.dom.Element.tagName +- fullName: xml.dom.Entity.notationName + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Entity.notationName + name: notationName + uid: xml.dom.Entity.notationName +- fullName: xml.dom.Entity.publicId + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Entity.publicId + name: publicId + uid: xml.dom.Entity.publicId +- fullName: xml.dom.Entity.systemId + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Entity.systemId + name: systemId + uid: xml.dom.Entity.systemId - fullName: xml.dom.NamedNodeMap.length href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NamedNodeMap.length name: length @@ -6743,6 +6799,10 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.nodeValue name: nodeValue uid: xml.dom.Node.nodeValue +- fullName: xml.dom.Node.ownerDocument + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.ownerDocument + name: ownerDocument + uid: xml.dom.Node.ownerDocument - fullName: xml.dom.Node.parentNode href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.parentNode name: parentNode @@ -6759,6 +6819,14 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NodeList.length name: length uid: xml.dom.NodeList.length +- fullName: xml.dom.Notation.publicId + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Notation.publicId + name: publicId + uid: xml.dom.Notation.publicId +- fullName: xml.dom.Notation.systemId + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Notation.systemId + name: systemId + uid: xml.dom.Notation.systemId - fullName: xml.dom.ProcessingInstruction.data href: https://docs.python.org/3/library/xml.dom.html#xml.dom.ProcessingInstruction.data name: data @@ -6771,6 +6839,10 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Text.data name: data uid: xml.dom.Text.data +- fullName: xml.dom.Text.wholeText + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Text.wholeText + name: wholeText + uid: xml.dom.Text.wholeText - fullName: xml.etree.ElementTree.Element.attrib href: https://docs.python.org/3/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.attrib name: attrib @@ -20871,6 +20943,26 @@ references: href: https://docs.python.org/3/library/wsgiref.html#wsgiref.simple_server.WSGIServer.set_app name: set_app uid: wsgiref.simple_server.WSGIServer.set_app +- fullName: xml.dom.CharacterData.appendData + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.CharacterData.appendData + name: appendData + uid: xml.dom.CharacterData.appendData +- fullName: xml.dom.CharacterData.deleteData + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.CharacterData.deleteData + name: deleteData + uid: xml.dom.CharacterData.deleteData +- fullName: xml.dom.CharacterData.insertData + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.CharacterData.insertData + name: insertData + uid: xml.dom.CharacterData.insertData +- fullName: xml.dom.CharacterData.replaceData + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.CharacterData.replaceData + name: replaceData + uid: xml.dom.CharacterData.replaceData +- fullName: xml.dom.CharacterData.substringData + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.CharacterData.substringData + name: substringData + uid: xml.dom.CharacterData.substringData - fullName: xml.dom.DOMImplementation.createDocument href: https://docs.python.org/3/library/xml.dom.html#xml.dom.DOMImplementation.createDocument name: createDocument @@ -20891,10 +20983,18 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.createAttributeNS name: createAttributeNS uid: xml.dom.Document.createAttributeNS +- fullName: xml.dom.Document.createCDATASection + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.createCDATASection + name: createCDATASection + uid: xml.dom.Document.createCDATASection - fullName: xml.dom.Document.createComment href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.createComment name: createComment uid: xml.dom.Document.createComment +- fullName: xml.dom.Document.createDocumentFragment + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.createDocumentFragment + name: createDocumentFragment + uid: xml.dom.Document.createDocumentFragment - fullName: xml.dom.Document.createElement href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.createElement name: createElement @@ -20911,6 +21011,10 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.createTextNode name: createTextNode uid: xml.dom.Document.createTextNode +- fullName: xml.dom.Document.getElementById + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.getElementById + name: getElementById + uid: xml.dom.Document.getElementById - fullName: xml.dom.Document.getElementsByTagName href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.getElementsByTagName name: getElementsByTagName @@ -20919,6 +21023,14 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.getElementsByTagNameNS name: getElementsByTagNameNS uid: xml.dom.Document.getElementsByTagNameNS +- fullName: xml.dom.Document.importNode + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.importNode + name: importNode + uid: xml.dom.Document.importNode +- fullName: xml.dom.Document.renameNode + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document.renameNode + name: renameNode + uid: xml.dom.Document.renameNode - fullName: xml.dom.Element.getAttribute href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Element.getAttribute name: getAttribute @@ -20979,10 +21091,46 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Element.setAttributeNodeNS name: setAttributeNodeNS uid: xml.dom.Element.setAttributeNodeNS +- fullName: xml.dom.Element.setIdAttribute + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Element.setIdAttribute + name: setIdAttribute + uid: xml.dom.Element.setIdAttribute +- fullName: xml.dom.Element.setIdAttributeNS + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Element.setIdAttributeNS + name: setIdAttributeNS + uid: xml.dom.Element.setIdAttributeNS +- fullName: xml.dom.Element.setIdAttributeNode + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Element.setIdAttributeNode + name: setIdAttributeNode + uid: xml.dom.Element.setIdAttributeNode +- fullName: xml.dom.NamedNodeMap.getNamedItem + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NamedNodeMap.getNamedItem + name: getNamedItem + uid: xml.dom.NamedNodeMap.getNamedItem +- fullName: xml.dom.NamedNodeMap.getNamedItemNS + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NamedNodeMap.getNamedItemNS + name: getNamedItemNS + uid: xml.dom.NamedNodeMap.getNamedItemNS - fullName: xml.dom.NamedNodeMap.item href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NamedNodeMap.item name: item uid: xml.dom.NamedNodeMap.item +- fullName: xml.dom.NamedNodeMap.removeNamedItem + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NamedNodeMap.removeNamedItem + name: removeNamedItem + uid: xml.dom.NamedNodeMap.removeNamedItem +- fullName: xml.dom.NamedNodeMap.removeNamedItemNS + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NamedNodeMap.removeNamedItemNS + name: removeNamedItemNS + uid: xml.dom.NamedNodeMap.removeNamedItemNS +- fullName: xml.dom.NamedNodeMap.setNamedItem + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NamedNodeMap.setNamedItem + name: setNamedItem + uid: xml.dom.NamedNodeMap.setNamedItem +- fullName: xml.dom.NamedNodeMap.setNamedItemNS + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NamedNodeMap.setNamedItemNS + name: setNamedItemNS + uid: xml.dom.NamedNodeMap.setNamedItemNS - fullName: xml.dom.Node.appendChild href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.appendChild name: appendChild @@ -20991,6 +21139,10 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.cloneNode name: cloneNode uid: xml.dom.Node.cloneNode +- fullName: xml.dom.Node.getUserData + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.getUserData + name: getUserData + uid: xml.dom.Node.getUserData - fullName: xml.dom.Node.hasAttributes href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.hasAttributes name: hasAttributes @@ -21007,6 +21159,10 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.isSameNode name: isSameNode uid: xml.dom.Node.isSameNode +- fullName: xml.dom.Node.isSupported + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.isSupported + name: isSupported + uid: xml.dom.Node.isSupported - fullName: xml.dom.Node.normalize href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.normalize name: normalize @@ -21019,10 +21175,22 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.replaceChild name: replaceChild uid: xml.dom.Node.replaceChild +- fullName: xml.dom.Node.setUserData + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.setUserData + name: setUserData + uid: xml.dom.Node.setUserData - fullName: xml.dom.NodeList.item href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NodeList.item name: item uid: xml.dom.NodeList.item +- fullName: xml.dom.Text.replaceWholeText + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Text.replaceWholeText + name: replaceWholeText + uid: xml.dom.Text.replaceWholeText +- fullName: xml.dom.Text.splitText + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Text.splitText + name: splitText + uid: xml.dom.Text.splitText - fullName: xml.dom.minidom.Node.toprettyxml href: https://docs.python.org/3/library/xml.dom.minidom.html#xml.dom.minidom.Node.toprettyxml name: toprettyxml @@ -29095,10 +29263,122 @@ references: href: https://docs.python.org/3/library/wsgiref.html#wsgiref.types.WSGIEnvironment name: WSGIEnvironment uid: wsgiref.types.WSGIEnvironment +- fullName: xml.dom.DOMSTRING_SIZE_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.DOMSTRING_SIZE_ERR + name: DOMSTRING_SIZE_ERR + uid: xml.dom.DOMSTRING_SIZE_ERR - fullName: xml.dom.EMPTY_NAMESPACE href: https://docs.python.org/3/library/xml.dom.html#xml.dom.EMPTY_NAMESPACE name: EMPTY_NAMESPACE uid: xml.dom.EMPTY_NAMESPACE +- fullName: xml.dom.HIERARCHY_REQUEST_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.HIERARCHY_REQUEST_ERR + name: HIERARCHY_REQUEST_ERR + uid: xml.dom.HIERARCHY_REQUEST_ERR +- fullName: xml.dom.INDEX_SIZE_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.INDEX_SIZE_ERR + name: INDEX_SIZE_ERR + uid: xml.dom.INDEX_SIZE_ERR +- fullName: xml.dom.INUSE_ATTRIBUTE_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.INUSE_ATTRIBUTE_ERR + name: INUSE_ATTRIBUTE_ERR + uid: xml.dom.INUSE_ATTRIBUTE_ERR +- fullName: xml.dom.INVALID_ACCESS_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.INVALID_ACCESS_ERR + name: INVALID_ACCESS_ERR + uid: xml.dom.INVALID_ACCESS_ERR +- fullName: xml.dom.INVALID_CHARACTER_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.INVALID_CHARACTER_ERR + name: INVALID_CHARACTER_ERR + uid: xml.dom.INVALID_CHARACTER_ERR +- fullName: xml.dom.INVALID_MODIFICATION_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.INVALID_MODIFICATION_ERR + name: INVALID_MODIFICATION_ERR + uid: xml.dom.INVALID_MODIFICATION_ERR +- fullName: xml.dom.INVALID_STATE_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.INVALID_STATE_ERR + name: INVALID_STATE_ERR + uid: xml.dom.INVALID_STATE_ERR +- fullName: xml.dom.NAMESPACE_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NAMESPACE_ERR + name: NAMESPACE_ERR + uid: xml.dom.NAMESPACE_ERR +- fullName: xml.dom.NOT_FOUND_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NOT_FOUND_ERR + name: NOT_FOUND_ERR + uid: xml.dom.NOT_FOUND_ERR +- fullName: xml.dom.NOT_SUPPORTED_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NOT_SUPPORTED_ERR + name: NOT_SUPPORTED_ERR + uid: xml.dom.NOT_SUPPORTED_ERR +- fullName: xml.dom.NO_DATA_ALLOWED_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NO_DATA_ALLOWED_ERR + name: NO_DATA_ALLOWED_ERR + uid: xml.dom.NO_DATA_ALLOWED_ERR +- fullName: xml.dom.NO_MODIFICATION_ALLOWED_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NO_MODIFICATION_ALLOWED_ERR + name: NO_MODIFICATION_ALLOWED_ERR + uid: xml.dom.NO_MODIFICATION_ALLOWED_ERR +- fullName: xml.dom.Node.ATTRIBUTE_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.ATTRIBUTE_NODE + name: ATTRIBUTE_NODE + uid: xml.dom.Node.ATTRIBUTE_NODE +- fullName: xml.dom.Node.CDATA_SECTION_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.CDATA_SECTION_NODE + name: CDATA_SECTION_NODE + uid: xml.dom.Node.CDATA_SECTION_NODE +- fullName: xml.dom.Node.COMMENT_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.COMMENT_NODE + name: COMMENT_NODE + uid: xml.dom.Node.COMMENT_NODE +- fullName: xml.dom.Node.DOCUMENT_FRAGMENT_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.DOCUMENT_FRAGMENT_NODE + name: DOCUMENT_FRAGMENT_NODE + uid: xml.dom.Node.DOCUMENT_FRAGMENT_NODE +- fullName: xml.dom.Node.DOCUMENT_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.DOCUMENT_NODE + name: DOCUMENT_NODE + uid: xml.dom.Node.DOCUMENT_NODE +- fullName: xml.dom.Node.DOCUMENT_TYPE_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.DOCUMENT_TYPE_NODE + name: DOCUMENT_TYPE_NODE + uid: xml.dom.Node.DOCUMENT_TYPE_NODE +- fullName: xml.dom.Node.ELEMENT_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.ELEMENT_NODE + name: ELEMENT_NODE + uid: xml.dom.Node.ELEMENT_NODE +- fullName: xml.dom.Node.ENTITY_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.ENTITY_NODE + name: ENTITY_NODE + uid: xml.dom.Node.ENTITY_NODE +- fullName: xml.dom.Node.ENTITY_REFERENCE_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.ENTITY_REFERENCE_NODE + name: ENTITY_REFERENCE_NODE + uid: xml.dom.Node.ENTITY_REFERENCE_NODE +- fullName: xml.dom.Node.NOTATION_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.NOTATION_NODE + name: NOTATION_NODE + uid: xml.dom.Node.NOTATION_NODE +- fullName: xml.dom.Node.PROCESSING_INSTRUCTION_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.PROCESSING_INSTRUCTION_NODE + name: PROCESSING_INSTRUCTION_NODE + uid: xml.dom.Node.PROCESSING_INSTRUCTION_NODE +- fullName: xml.dom.Node.TEXT_NODE + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node.TEXT_NODE + name: TEXT_NODE + uid: xml.dom.Node.TEXT_NODE +- fullName: xml.dom.SYNTAX_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.SYNTAX_ERR + name: SYNTAX_ERR + uid: xml.dom.SYNTAX_ERR +- fullName: xml.dom.VALIDATION_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.VALIDATION_ERR + name: VALIDATION_ERR + uid: xml.dom.VALIDATION_ERR +- fullName: xml.dom.WRONG_DOCUMENT_ERR + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.WRONG_DOCUMENT_ERR + name: WRONG_DOCUMENT_ERR + uid: xml.dom.WRONG_DOCUMENT_ERR - fullName: xml.dom.XHTML_NAMESPACE href: https://docs.python.org/3/library/xml.dom.html#xml.dom.XHTML_NAMESPACE name: XHTML_NAMESPACE @@ -34719,6 +34999,70 @@ references: href: https://docs.python.org/3/library/wsgiref.html#wsgiref.util.FileWrapper name: FileWrapper uid: wsgiref.util.FileWrapper +- fullName: xml.dom.Attr + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Attr + name: Attr + uid: xml.dom.Attr +- fullName: xml.dom.CDATASection + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.CDATASection + name: CDATASection + uid: xml.dom.CDATASection +- fullName: xml.dom.CharacterData + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.CharacterData + name: CharacterData + uid: xml.dom.CharacterData +- fullName: xml.dom.Comment + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Comment + name: Comment + uid: xml.dom.Comment +- fullName: xml.dom.DOMImplementation + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.DOMImplementation + name: DOMImplementation + uid: xml.dom.DOMImplementation +- fullName: xml.dom.Document + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Document + name: Document + uid: xml.dom.Document +- fullName: xml.dom.DocumentFragment + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.DocumentFragment + name: DocumentFragment + uid: xml.dom.DocumentFragment +- fullName: xml.dom.DocumentType + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.DocumentType + name: DocumentType + uid: xml.dom.DocumentType +- fullName: xml.dom.Element + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Element + name: Element + uid: xml.dom.Element +- fullName: xml.dom.Entity + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Entity + name: Entity + uid: xml.dom.Entity +- fullName: xml.dom.NamedNodeMap + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NamedNodeMap + name: NamedNodeMap + uid: xml.dom.NamedNodeMap +- fullName: xml.dom.Node + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Node + name: Node + uid: xml.dom.Node +- fullName: xml.dom.NodeList + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.NodeList + name: NodeList + uid: xml.dom.NodeList +- fullName: xml.dom.Notation + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Notation + name: Notation + uid: xml.dom.Notation +- fullName: xml.dom.ProcessingInstruction + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.ProcessingInstruction + name: ProcessingInstruction + uid: xml.dom.ProcessingInstruction +- fullName: xml.dom.Text + href: https://docs.python.org/3/library/xml.dom.html#xml.dom.Text + name: Text + uid: xml.dom.Text - fullName: xml.dom.pulldom.DOMEventStream href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.DOMEventStream name: DOMEventStream From 55fdab85176e30b1e2a0466233dec5f5282f7cee Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Wed, 2 Sep 2026 18:07:25 +0000 Subject: [PATCH 16/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=625400&view=results --- xrefmap.yml | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index 4482e554..87c85c8b 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -1223,6 +1223,10 @@ references: href: https://docs.python.org/3/library/xml.sax.html#xml.sax.SAXParseException name: SAXParseException uid: xml.sax.SAXParseException +- fullName: xml.sax.SAXReaderNotAvailable + href: https://docs.python.org/3/library/xml.sax.html#xml.sax.SAXReaderNotAvailable + name: SAXReaderNotAvailable + uid: xml.sax.SAXReaderNotAvailable - fullName: zipfile.BadZipFile href: https://docs.python.org/3/library/zipfile.html#zipfile.BadZipFile name: BadZipFile @@ -21207,6 +21211,10 @@ references: href: https://docs.python.org/3/library/xml.dom.minidom.html#xml.dom.minidom.Node.writexml name: writexml uid: xml.dom.minidom.Node.writexml +- fullName: xml.dom.pulldom.DOMEventStream.clear + href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.DOMEventStream.clear + name: clear + uid: xml.dom.pulldom.DOMEventStream.clear - fullName: xml.dom.pulldom.DOMEventStream.expandNode href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.DOMEventStream.expandNode name: expandNode @@ -21627,6 +21635,14 @@ references: href: https://docs.python.org/3/library/xml.sax.handler.html#xml.sax.handler.LexicalHandler.startDTD name: startDTD uid: xml.sax.handler.LexicalHandler.startDTD +- fullName: xml.sax.saxutils.XMLFilterBase.getParent + href: https://docs.python.org/3/library/xml.sax.utils.html#xml.sax.saxutils.XMLFilterBase.getParent + name: getParent + uid: xml.sax.saxutils.XMLFilterBase.getParent +- fullName: xml.sax.saxutils.XMLFilterBase.setParent + href: https://docs.python.org/3/library/xml.sax.utils.html#xml.sax.saxutils.XMLFilterBase.setParent + name: setParent + uid: xml.sax.saxutils.XMLFilterBase.setParent - fullName: xml.sax.xmlreader.Attributes.getLength href: https://docs.python.org/3/library/xml.sax.reader.html#xml.sax.xmlreader.Attributes.getLength name: getLength @@ -21667,6 +21683,10 @@ references: href: https://docs.python.org/3/library/xml.sax.reader.html#xml.sax.xmlreader.IncrementalParser.feed name: feed uid: xml.sax.xmlreader.IncrementalParser.feed +- fullName: xml.sax.xmlreader.IncrementalParser.prepareParser + href: https://docs.python.org/3/library/xml.sax.reader.html#xml.sax.xmlreader.IncrementalParser.prepareParser + name: prepareParser + uid: xml.sax.xmlreader.IncrementalParser.prepareParser - fullName: xml.sax.xmlreader.IncrementalParser.reset href: https://docs.python.org/3/library/xml.sax.reader.html#xml.sax.xmlreader.IncrementalParser.reset name: reset @@ -29391,6 +29411,38 @@ references: href: https://docs.python.org/3/library/xml.dom.html#xml.dom.XML_NAMESPACE name: XML_NAMESPACE uid: xml.dom.XML_NAMESPACE +- fullName: xml.dom.pulldom.CHARACTERS + href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.CHARACTERS + name: CHARACTERS + uid: xml.dom.pulldom.CHARACTERS +- fullName: xml.dom.pulldom.COMMENT + href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.COMMENT + name: COMMENT + uid: xml.dom.pulldom.COMMENT +- fullName: xml.dom.pulldom.END_DOCUMENT + href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.END_DOCUMENT + name: END_DOCUMENT + uid: xml.dom.pulldom.END_DOCUMENT +- fullName: xml.dom.pulldom.END_ELEMENT + href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.END_ELEMENT + name: END_ELEMENT + uid: xml.dom.pulldom.END_ELEMENT +- fullName: xml.dom.pulldom.IGNORABLE_WHITESPACE + href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.IGNORABLE_WHITESPACE + name: IGNORABLE_WHITESPACE + uid: xml.dom.pulldom.IGNORABLE_WHITESPACE +- fullName: xml.dom.pulldom.PROCESSING_INSTRUCTION + href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.PROCESSING_INSTRUCTION + name: PROCESSING_INSTRUCTION + uid: xml.dom.pulldom.PROCESSING_INSTRUCTION +- fullName: xml.dom.pulldom.START_DOCUMENT + href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.START_DOCUMENT + name: START_DOCUMENT + uid: xml.dom.pulldom.START_DOCUMENT +- fullName: xml.dom.pulldom.START_ELEMENT + href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.START_ELEMENT + name: START_ELEMENT + uid: xml.dom.pulldom.START_ELEMENT - fullName: xml.dom.pulldom.default_bufsize href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.default_bufsize name: default_bufsize @@ -29583,6 +29635,10 @@ references: href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.errors.messages name: messages uid: xml.parsers.expat.errors.messages +- fullName: xml.sax.default_parser_list + href: https://docs.python.org/3/library/xml.sax.html#xml.sax.default_parser_list + name: default_parser_list + uid: xml.sax.default_parser_list - fullName: xml.sax.handler.all_features href: https://docs.python.org/3/library/xml.sax.handler.html#xml.sax.handler.all_features name: all_features @@ -29623,6 +29679,14 @@ references: href: https://docs.python.org/3/library/xml.sax.handler.html#xml.sax.handler.property_dom_node name: property_dom_node uid: xml.sax.handler.property_dom_node +- fullName: xml.sax.handler.property_encoding + href: https://docs.python.org/3/library/xml.sax.handler.html#xml.sax.handler.property_encoding + name: property_encoding + uid: xml.sax.handler.property_encoding +- fullName: xml.sax.handler.property_interning_dict + href: https://docs.python.org/3/library/xml.sax.handler.html#xml.sax.handler.property_interning_dict + name: property_interning_dict + uid: xml.sax.handler.property_interning_dict - fullName: xml.sax.handler.property_lexical_handler href: https://docs.python.org/3/library/xml.sax.handler.html#xml.sax.handler.property_lexical_handler name: property_lexical_handler From 6ba32d1e2287c75c66d0b97449dba63e06942d42 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Thu, 3 Sep 2026 05:07:00 +0000 Subject: [PATCH 17/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=625523&view=results --- xrefmap.yml | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index 87c85c8b..8ac006bf 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -6923,6 +6923,14 @@ references: href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.xmlparser.buffer_used name: buffer_used uid: xml.parsers.expat.xmlparser.buffer_used +- fullName: xml.parsers.expat.xmlparser.intern + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.xmlparser.intern + name: intern + uid: xml.parsers.expat.xmlparser.intern +- fullName: xml.parsers.expat.xmlparser.namespace_prefixes + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.xmlparser.namespace_prefixes + name: namespace_prefixes + uid: xml.parsers.expat.xmlparser.namespace_prefixes - fullName: xml.parsers.expat.xmlparser.ordered_attributes href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.xmlparser.ordered_attributes name: ordered_attributes @@ -21503,6 +21511,10 @@ references: href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.xmlparser.SetReparseDeferralEnabled name: SetReparseDeferralEnabled uid: xml.parsers.expat.xmlparser.SetReparseDeferralEnabled +- fullName: xml.parsers.expat.xmlparser.SkippedEntityHandler + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.xmlparser.SkippedEntityHandler + name: SkippedEntityHandler + uid: xml.parsers.expat.xmlparser.SkippedEntityHandler - fullName: xml.parsers.expat.xmlparser.StartCdataSectionHandler href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.xmlparser.StartCdataSectionHandler name: StartCdataSectionHandler @@ -29447,6 +29459,10 @@ references: href: https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.default_bufsize name: default_bufsize uid: xml.dom.pulldom.default_bufsize +- fullName: xml.parsers.expat.EXPAT_VERSION + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.EXPAT_VERSION + name: EXPAT_VERSION + uid: xml.parsers.expat.EXPAT_VERSION - fullName: xml.parsers.expat.XMLParserType href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.XMLParserType name: XMLParserType @@ -29635,6 +29651,54 @@ references: href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.errors.messages name: messages uid: xml.parsers.expat.errors.messages +- fullName: xml.parsers.expat.features + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.features + name: features + uid: xml.parsers.expat.features +- fullName: xml.parsers.expat.model.XML_CQUANT_NONE + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.model.XML_CQUANT_NONE + name: XML_CQUANT_NONE + uid: xml.parsers.expat.model.XML_CQUANT_NONE +- fullName: xml.parsers.expat.model.XML_CQUANT_OPT + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.model.XML_CQUANT_OPT + name: XML_CQUANT_OPT + uid: xml.parsers.expat.model.XML_CQUANT_OPT +- fullName: xml.parsers.expat.model.XML_CQUANT_PLUS + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.model.XML_CQUANT_PLUS + name: XML_CQUANT_PLUS + uid: xml.parsers.expat.model.XML_CQUANT_PLUS +- fullName: xml.parsers.expat.model.XML_CQUANT_REP + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.model.XML_CQUANT_REP + name: XML_CQUANT_REP + uid: xml.parsers.expat.model.XML_CQUANT_REP +- fullName: xml.parsers.expat.model.XML_CTYPE_ANY + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.model.XML_CTYPE_ANY + name: XML_CTYPE_ANY + uid: xml.parsers.expat.model.XML_CTYPE_ANY +- fullName: xml.parsers.expat.model.XML_CTYPE_CHOICE + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.model.XML_CTYPE_CHOICE + name: XML_CTYPE_CHOICE + uid: xml.parsers.expat.model.XML_CTYPE_CHOICE +- fullName: xml.parsers.expat.model.XML_CTYPE_EMPTY + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.model.XML_CTYPE_EMPTY + name: XML_CTYPE_EMPTY + uid: xml.parsers.expat.model.XML_CTYPE_EMPTY +- fullName: xml.parsers.expat.model.XML_CTYPE_MIXED + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.model.XML_CTYPE_MIXED + name: XML_CTYPE_MIXED + uid: xml.parsers.expat.model.XML_CTYPE_MIXED +- fullName: xml.parsers.expat.model.XML_CTYPE_NAME + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.model.XML_CTYPE_NAME + name: XML_CTYPE_NAME + uid: xml.parsers.expat.model.XML_CTYPE_NAME +- fullName: xml.parsers.expat.model.XML_CTYPE_SEQ + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.model.XML_CTYPE_SEQ + name: XML_CTYPE_SEQ + uid: xml.parsers.expat.model.XML_CTYPE_SEQ +- fullName: xml.parsers.expat.version_info + href: https://docs.python.org/3/library/pyexpat.html#xml.parsers.expat.version_info + name: version_info + uid: xml.parsers.expat.version_info - fullName: xml.sax.default_parser_list href: https://docs.python.org/3/library/xml.sax.html#xml.sax.default_parser_list name: default_parser_list From 6cfa448d61e44ad1124502efb2d2d84102fd0320 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Sun, 13 Sep 2026 18:09:26 +0000 Subject: [PATCH 18/18] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=626900&view=results --- xrefmap.yml | 896 ++++++++++++++++++++++++++-------------------------- 1 file changed, 448 insertions(+), 448 deletions(-) diff --git a/xrefmap.yml b/xrefmap.yml index 8ac006bf..17b9d09f 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -1,286 +1,286 @@ references: - fullName: ArithmeticError - href: https://docs.python.org/3/library/exceptions.html#ArithmeticError + href: https://docs.python.org/3/builtins/exceptions.html#ArithmeticError name: ArithmeticError uid: ArithmeticError - fullName: AssertionError - href: https://docs.python.org/3/library/exceptions.html#AssertionError + href: https://docs.python.org/3/builtins/exceptions.html#AssertionError name: AssertionError uid: AssertionError - fullName: AttributeError - href: https://docs.python.org/3/library/exceptions.html#AttributeError + href: https://docs.python.org/3/builtins/exceptions.html#AttributeError name: AttributeError uid: AttributeError - fullName: BaseException - href: https://docs.python.org/3/library/exceptions.html#BaseException + href: https://docs.python.org/3/builtins/exceptions.html#BaseException name: BaseException uid: BaseException - fullName: BaseExceptionGroup - href: https://docs.python.org/3/library/exceptions.html#BaseExceptionGroup + href: https://docs.python.org/3/builtins/exceptions.html#BaseExceptionGroup name: BaseExceptionGroup uid: BaseExceptionGroup - fullName: BlockingIOError - href: https://docs.python.org/3/library/exceptions.html#BlockingIOError + href: https://docs.python.org/3/builtins/exceptions.html#BlockingIOError name: BlockingIOError uid: BlockingIOError - fullName: BrokenPipeError - href: https://docs.python.org/3/library/exceptions.html#BrokenPipeError + href: https://docs.python.org/3/builtins/exceptions.html#BrokenPipeError name: BrokenPipeError uid: BrokenPipeError - fullName: BufferError - href: https://docs.python.org/3/library/exceptions.html#BufferError + href: https://docs.python.org/3/builtins/exceptions.html#BufferError name: BufferError uid: BufferError - fullName: BytesWarning - href: https://docs.python.org/3/library/exceptions.html#BytesWarning + href: https://docs.python.org/3/builtins/exceptions.html#BytesWarning name: BytesWarning uid: BytesWarning - fullName: ChildProcessError - href: https://docs.python.org/3/library/exceptions.html#ChildProcessError + href: https://docs.python.org/3/builtins/exceptions.html#ChildProcessError name: ChildProcessError uid: ChildProcessError - fullName: ConnectionAbortedError - href: https://docs.python.org/3/library/exceptions.html#ConnectionAbortedError + href: https://docs.python.org/3/builtins/exceptions.html#ConnectionAbortedError name: ConnectionAbortedError uid: ConnectionAbortedError - fullName: ConnectionError - href: https://docs.python.org/3/library/exceptions.html#ConnectionError + href: https://docs.python.org/3/builtins/exceptions.html#ConnectionError name: ConnectionError uid: ConnectionError - fullName: ConnectionRefusedError - href: https://docs.python.org/3/library/exceptions.html#ConnectionRefusedError + href: https://docs.python.org/3/builtins/exceptions.html#ConnectionRefusedError name: ConnectionRefusedError uid: ConnectionRefusedError - fullName: ConnectionResetError - href: https://docs.python.org/3/library/exceptions.html#ConnectionResetError + href: https://docs.python.org/3/builtins/exceptions.html#ConnectionResetError name: ConnectionResetError uid: ConnectionResetError - fullName: DeprecationWarning - href: https://docs.python.org/3/library/exceptions.html#DeprecationWarning + href: https://docs.python.org/3/builtins/exceptions.html#DeprecationWarning name: DeprecationWarning uid: DeprecationWarning - fullName: EOFError - href: https://docs.python.org/3/library/exceptions.html#EOFError + href: https://docs.python.org/3/builtins/exceptions.html#EOFError name: EOFError uid: EOFError - fullName: EncodingWarning - href: https://docs.python.org/3/library/exceptions.html#EncodingWarning + href: https://docs.python.org/3/builtins/exceptions.html#EncodingWarning name: EncodingWarning uid: EncodingWarning - fullName: EnvironmentError - href: https://docs.python.org/3/library/exceptions.html#EnvironmentError + href: https://docs.python.org/3/builtins/exceptions.html#EnvironmentError name: EnvironmentError uid: EnvironmentError - fullName: Exception - href: https://docs.python.org/3/library/exceptions.html#Exception + href: https://docs.python.org/3/builtins/exceptions.html#Exception name: Exception uid: Exception - fullName: ExceptionGroup - href: https://docs.python.org/3/library/exceptions.html#ExceptionGroup + href: https://docs.python.org/3/builtins/exceptions.html#ExceptionGroup name: ExceptionGroup uid: ExceptionGroup - fullName: FileExistsError - href: https://docs.python.org/3/library/exceptions.html#FileExistsError + href: https://docs.python.org/3/builtins/exceptions.html#FileExistsError name: FileExistsError uid: FileExistsError - fullName: FileNotFoundError - href: https://docs.python.org/3/library/exceptions.html#FileNotFoundError + href: https://docs.python.org/3/builtins/exceptions.html#FileNotFoundError name: FileNotFoundError uid: FileNotFoundError - fullName: FloatingPointError - href: https://docs.python.org/3/library/exceptions.html#FloatingPointError + href: https://docs.python.org/3/builtins/exceptions.html#FloatingPointError name: FloatingPointError uid: FloatingPointError - fullName: FutureWarning - href: https://docs.python.org/3/library/exceptions.html#FutureWarning + href: https://docs.python.org/3/builtins/exceptions.html#FutureWarning name: FutureWarning uid: FutureWarning - fullName: GeneratorExit - href: https://docs.python.org/3/library/exceptions.html#GeneratorExit + href: https://docs.python.org/3/builtins/exceptions.html#GeneratorExit name: GeneratorExit uid: GeneratorExit - fullName: IOError - href: https://docs.python.org/3/library/exceptions.html#IOError + href: https://docs.python.org/3/builtins/exceptions.html#IOError name: IOError uid: IOError - fullName: ImportError - href: https://docs.python.org/3/library/exceptions.html#ImportError + href: https://docs.python.org/3/builtins/exceptions.html#ImportError name: ImportError uid: ImportError - fullName: ImportWarning - href: https://docs.python.org/3/library/exceptions.html#ImportWarning + href: https://docs.python.org/3/builtins/exceptions.html#ImportWarning name: ImportWarning uid: ImportWarning - fullName: IndentationError - href: https://docs.python.org/3/library/exceptions.html#IndentationError + href: https://docs.python.org/3/builtins/exceptions.html#IndentationError name: IndentationError uid: IndentationError - fullName: IndexError - href: https://docs.python.org/3/library/exceptions.html#IndexError + href: https://docs.python.org/3/builtins/exceptions.html#IndexError name: IndexError uid: IndexError - fullName: InterruptedError - href: https://docs.python.org/3/library/exceptions.html#InterruptedError + href: https://docs.python.org/3/builtins/exceptions.html#InterruptedError name: InterruptedError uid: InterruptedError - fullName: IsADirectoryError - href: https://docs.python.org/3/library/exceptions.html#IsADirectoryError + href: https://docs.python.org/3/builtins/exceptions.html#IsADirectoryError name: IsADirectoryError uid: IsADirectoryError - fullName: KeyError - href: https://docs.python.org/3/library/exceptions.html#KeyError + href: https://docs.python.org/3/builtins/exceptions.html#KeyError name: KeyError uid: KeyError - fullName: KeyboardInterrupt - href: https://docs.python.org/3/library/exceptions.html#KeyboardInterrupt + href: https://docs.python.org/3/builtins/exceptions.html#KeyboardInterrupt name: KeyboardInterrupt uid: KeyboardInterrupt - fullName: LookupError - href: https://docs.python.org/3/library/exceptions.html#LookupError + href: https://docs.python.org/3/builtins/exceptions.html#LookupError name: LookupError uid: LookupError - fullName: MemoryError - href: https://docs.python.org/3/library/exceptions.html#MemoryError + href: https://docs.python.org/3/builtins/exceptions.html#MemoryError name: MemoryError uid: MemoryError - fullName: ModuleNotFoundError - href: https://docs.python.org/3/library/exceptions.html#ModuleNotFoundError + href: https://docs.python.org/3/builtins/exceptions.html#ModuleNotFoundError name: ModuleNotFoundError uid: ModuleNotFoundError - fullName: NameError - href: https://docs.python.org/3/library/exceptions.html#NameError + href: https://docs.python.org/3/builtins/exceptions.html#NameError name: NameError uid: NameError - fullName: NotADirectoryError - href: https://docs.python.org/3/library/exceptions.html#NotADirectoryError + href: https://docs.python.org/3/builtins/exceptions.html#NotADirectoryError name: NotADirectoryError uid: NotADirectoryError - fullName: NotImplementedError - href: https://docs.python.org/3/library/exceptions.html#NotImplementedError + href: https://docs.python.org/3/builtins/exceptions.html#NotImplementedError name: NotImplementedError uid: NotImplementedError - fullName: OSError - href: https://docs.python.org/3/library/exceptions.html#OSError + href: https://docs.python.org/3/builtins/exceptions.html#OSError name: OSError uid: OSError - fullName: OverflowError - href: https://docs.python.org/3/library/exceptions.html#OverflowError + href: https://docs.python.org/3/builtins/exceptions.html#OverflowError name: OverflowError uid: OverflowError - fullName: PendingDeprecationWarning - href: https://docs.python.org/3/library/exceptions.html#PendingDeprecationWarning + href: https://docs.python.org/3/builtins/exceptions.html#PendingDeprecationWarning name: PendingDeprecationWarning uid: PendingDeprecationWarning - fullName: PermissionError - href: https://docs.python.org/3/library/exceptions.html#PermissionError + href: https://docs.python.org/3/builtins/exceptions.html#PermissionError name: PermissionError uid: PermissionError - fullName: ProcessLookupError - href: https://docs.python.org/3/library/exceptions.html#ProcessLookupError + href: https://docs.python.org/3/builtins/exceptions.html#ProcessLookupError name: ProcessLookupError uid: ProcessLookupError - fullName: PythonFinalizationError - href: https://docs.python.org/3/library/exceptions.html#PythonFinalizationError + href: https://docs.python.org/3/builtins/exceptions.html#PythonFinalizationError name: PythonFinalizationError uid: PythonFinalizationError - fullName: RecursionError - href: https://docs.python.org/3/library/exceptions.html#RecursionError + href: https://docs.python.org/3/builtins/exceptions.html#RecursionError name: RecursionError uid: RecursionError - fullName: ReferenceError - href: https://docs.python.org/3/library/exceptions.html#ReferenceError + href: https://docs.python.org/3/builtins/exceptions.html#ReferenceError name: ReferenceError uid: ReferenceError - fullName: ResourceWarning - href: https://docs.python.org/3/library/exceptions.html#ResourceWarning + href: https://docs.python.org/3/builtins/exceptions.html#ResourceWarning name: ResourceWarning uid: ResourceWarning - fullName: RuntimeError - href: https://docs.python.org/3/library/exceptions.html#RuntimeError + href: https://docs.python.org/3/builtins/exceptions.html#RuntimeError name: RuntimeError uid: RuntimeError - fullName: RuntimeWarning - href: https://docs.python.org/3/library/exceptions.html#RuntimeWarning + href: https://docs.python.org/3/builtins/exceptions.html#RuntimeWarning name: RuntimeWarning uid: RuntimeWarning - fullName: StopAsyncIteration - href: https://docs.python.org/3/library/exceptions.html#StopAsyncIteration + href: https://docs.python.org/3/builtins/exceptions.html#StopAsyncIteration name: StopAsyncIteration uid: StopAsyncIteration - fullName: StopIteration - href: https://docs.python.org/3/library/exceptions.html#StopIteration + href: https://docs.python.org/3/builtins/exceptions.html#StopIteration name: StopIteration uid: StopIteration - fullName: SyntaxError - href: https://docs.python.org/3/library/exceptions.html#SyntaxError + href: https://docs.python.org/3/builtins/exceptions.html#SyntaxError name: SyntaxError uid: SyntaxError - fullName: SyntaxWarning - href: https://docs.python.org/3/library/exceptions.html#SyntaxWarning + href: https://docs.python.org/3/builtins/exceptions.html#SyntaxWarning name: SyntaxWarning uid: SyntaxWarning - fullName: SystemError - href: https://docs.python.org/3/library/exceptions.html#SystemError + href: https://docs.python.org/3/builtins/exceptions.html#SystemError name: SystemError uid: SystemError - fullName: SystemExit - href: https://docs.python.org/3/library/exceptions.html#SystemExit + href: https://docs.python.org/3/builtins/exceptions.html#SystemExit name: SystemExit uid: SystemExit - fullName: TabError - href: https://docs.python.org/3/library/exceptions.html#TabError + href: https://docs.python.org/3/builtins/exceptions.html#TabError name: TabError uid: TabError - fullName: TimeoutError - href: https://docs.python.org/3/library/exceptions.html#TimeoutError + href: https://docs.python.org/3/builtins/exceptions.html#TimeoutError name: TimeoutError uid: TimeoutError - fullName: TypeError - href: https://docs.python.org/3/library/exceptions.html#TypeError + href: https://docs.python.org/3/builtins/exceptions.html#TypeError name: TypeError uid: TypeError - fullName: UnboundLocalError - href: https://docs.python.org/3/library/exceptions.html#UnboundLocalError + href: https://docs.python.org/3/builtins/exceptions.html#UnboundLocalError name: UnboundLocalError uid: UnboundLocalError - fullName: UnicodeDecodeError - href: https://docs.python.org/3/library/exceptions.html#UnicodeDecodeError + href: https://docs.python.org/3/builtins/exceptions.html#UnicodeDecodeError name: UnicodeDecodeError uid: UnicodeDecodeError - fullName: UnicodeEncodeError - href: https://docs.python.org/3/library/exceptions.html#UnicodeEncodeError + href: https://docs.python.org/3/builtins/exceptions.html#UnicodeEncodeError name: UnicodeEncodeError uid: UnicodeEncodeError - fullName: UnicodeError - href: https://docs.python.org/3/library/exceptions.html#UnicodeError + href: https://docs.python.org/3/builtins/exceptions.html#UnicodeError name: UnicodeError uid: UnicodeError - fullName: UnicodeTranslateError - href: https://docs.python.org/3/library/exceptions.html#UnicodeTranslateError + href: https://docs.python.org/3/builtins/exceptions.html#UnicodeTranslateError name: UnicodeTranslateError uid: UnicodeTranslateError - fullName: UnicodeWarning - href: https://docs.python.org/3/library/exceptions.html#UnicodeWarning + href: https://docs.python.org/3/builtins/exceptions.html#UnicodeWarning name: UnicodeWarning uid: UnicodeWarning - fullName: UserWarning - href: https://docs.python.org/3/library/exceptions.html#UserWarning + href: https://docs.python.org/3/builtins/exceptions.html#UserWarning name: UserWarning uid: UserWarning - fullName: ValueError - href: https://docs.python.org/3/library/exceptions.html#ValueError + href: https://docs.python.org/3/builtins/exceptions.html#ValueError name: ValueError uid: ValueError - fullName: Warning - href: https://docs.python.org/3/library/exceptions.html#Warning + href: https://docs.python.org/3/builtins/exceptions.html#Warning name: Warning uid: Warning - fullName: WindowsError - href: https://docs.python.org/3/library/exceptions.html#WindowsError + href: https://docs.python.org/3/builtins/exceptions.html#WindowsError name: WindowsError uid: WindowsError - fullName: ZeroDivisionError - href: https://docs.python.org/3/library/exceptions.html#ZeroDivisionError + href: https://docs.python.org/3/builtins/exceptions.html#ZeroDivisionError name: ZeroDivisionError uid: ZeroDivisionError - fullName: _thread.error @@ -1256,131 +1256,131 @@ references: name: ZoneInfoNotFoundError uid: zoneinfo.ZoneInfoNotFoundError - fullName: AttributeError.name - href: https://docs.python.org/3/library/exceptions.html#AttributeError.name + href: https://docs.python.org/3/builtins/exceptions.html#AttributeError.name name: name uid: AttributeError.name - fullName: AttributeError.obj - href: https://docs.python.org/3/library/exceptions.html#AttributeError.obj + href: https://docs.python.org/3/builtins/exceptions.html#AttributeError.obj name: obj uid: AttributeError.obj - fullName: BaseException.__cause__ - href: https://docs.python.org/3/library/exceptions.html#BaseException.__cause__ + href: https://docs.python.org/3/builtins/exceptions.html#BaseException.__cause__ name: __cause__ uid: BaseException.__cause__ - fullName: BaseException.__context__ - href: https://docs.python.org/3/library/exceptions.html#BaseException.__context__ + href: https://docs.python.org/3/builtins/exceptions.html#BaseException.__context__ name: __context__ uid: BaseException.__context__ - fullName: BaseException.__notes__ - href: https://docs.python.org/3/library/exceptions.html#BaseException.__notes__ + href: https://docs.python.org/3/builtins/exceptions.html#BaseException.__notes__ name: __notes__ uid: BaseException.__notes__ - fullName: BaseException.__suppress_context__ - href: https://docs.python.org/3/library/exceptions.html#BaseException.__suppress_context__ + href: https://docs.python.org/3/builtins/exceptions.html#BaseException.__suppress_context__ name: __suppress_context__ uid: BaseException.__suppress_context__ - fullName: BaseException.__traceback__ - href: https://docs.python.org/3/library/exceptions.html#BaseException.__traceback__ + href: https://docs.python.org/3/builtins/exceptions.html#BaseException.__traceback__ name: __traceback__ uid: BaseException.__traceback__ - fullName: BaseException.args - href: https://docs.python.org/3/library/exceptions.html#BaseException.args + href: https://docs.python.org/3/builtins/exceptions.html#BaseException.args name: args uid: BaseException.args - fullName: BaseExceptionGroup.exceptions - href: https://docs.python.org/3/library/exceptions.html#BaseExceptionGroup.exceptions + href: https://docs.python.org/3/builtins/exceptions.html#BaseExceptionGroup.exceptions name: exceptions uid: BaseExceptionGroup.exceptions - fullName: BaseExceptionGroup.message - href: https://docs.python.org/3/library/exceptions.html#BaseExceptionGroup.message + href: https://docs.python.org/3/builtins/exceptions.html#BaseExceptionGroup.message name: message uid: BaseExceptionGroup.message - fullName: BlockingIOError.characters_written - href: https://docs.python.org/3/library/exceptions.html#BlockingIOError.characters_written + href: https://docs.python.org/3/builtins/exceptions.html#BlockingIOError.characters_written name: characters_written uid: BlockingIOError.characters_written - fullName: ImportError.name - href: https://docs.python.org/3/library/exceptions.html#ImportError.name + href: https://docs.python.org/3/builtins/exceptions.html#ImportError.name name: name uid: ImportError.name - fullName: ImportError.path - href: https://docs.python.org/3/library/exceptions.html#ImportError.path + href: https://docs.python.org/3/builtins/exceptions.html#ImportError.path name: path uid: ImportError.path - fullName: NameError.name - href: https://docs.python.org/3/library/exceptions.html#NameError.name + href: https://docs.python.org/3/builtins/exceptions.html#NameError.name name: name uid: NameError.name - fullName: OSError.errno - href: https://docs.python.org/3/library/exceptions.html#OSError.errno + href: https://docs.python.org/3/builtins/exceptions.html#OSError.errno name: errno uid: OSError.errno - fullName: OSError.filename - href: https://docs.python.org/3/library/exceptions.html#OSError.filename + href: https://docs.python.org/3/builtins/exceptions.html#OSError.filename name: filename uid: OSError.filename - fullName: OSError.filename2 - href: https://docs.python.org/3/library/exceptions.html#OSError.filename2 + href: https://docs.python.org/3/builtins/exceptions.html#OSError.filename2 name: filename2 uid: OSError.filename2 - fullName: OSError.strerror - href: https://docs.python.org/3/library/exceptions.html#OSError.strerror + href: https://docs.python.org/3/builtins/exceptions.html#OSError.strerror name: strerror uid: OSError.strerror - fullName: OSError.winerror - href: https://docs.python.org/3/library/exceptions.html#OSError.winerror + href: https://docs.python.org/3/builtins/exceptions.html#OSError.winerror name: winerror uid: OSError.winerror - fullName: StopIteration.value - href: https://docs.python.org/3/library/exceptions.html#StopIteration.value + href: https://docs.python.org/3/builtins/exceptions.html#StopIteration.value name: value uid: StopIteration.value - fullName: SyntaxError.end_lineno - href: https://docs.python.org/3/library/exceptions.html#SyntaxError.end_lineno + href: https://docs.python.org/3/builtins/exceptions.html#SyntaxError.end_lineno name: end_lineno uid: SyntaxError.end_lineno - fullName: SyntaxError.end_offset - href: https://docs.python.org/3/library/exceptions.html#SyntaxError.end_offset + href: https://docs.python.org/3/builtins/exceptions.html#SyntaxError.end_offset name: end_offset uid: SyntaxError.end_offset - fullName: SyntaxError.filename - href: https://docs.python.org/3/library/exceptions.html#SyntaxError.filename + href: https://docs.python.org/3/builtins/exceptions.html#SyntaxError.filename name: filename uid: SyntaxError.filename - fullName: SyntaxError.lineno - href: https://docs.python.org/3/library/exceptions.html#SyntaxError.lineno + href: https://docs.python.org/3/builtins/exceptions.html#SyntaxError.lineno name: lineno uid: SyntaxError.lineno - fullName: SyntaxError.offset - href: https://docs.python.org/3/library/exceptions.html#SyntaxError.offset + href: https://docs.python.org/3/builtins/exceptions.html#SyntaxError.offset name: offset uid: SyntaxError.offset - fullName: SyntaxError.text - href: https://docs.python.org/3/library/exceptions.html#SyntaxError.text + href: https://docs.python.org/3/builtins/exceptions.html#SyntaxError.text name: text uid: SyntaxError.text - fullName: SystemExit.code - href: https://docs.python.org/3/library/exceptions.html#SystemExit.code + href: https://docs.python.org/3/builtins/exceptions.html#SystemExit.code name: code uid: SystemExit.code - fullName: UnicodeError.encoding - href: https://docs.python.org/3/library/exceptions.html#UnicodeError.encoding + href: https://docs.python.org/3/builtins/exceptions.html#UnicodeError.encoding name: encoding uid: UnicodeError.encoding - fullName: UnicodeError.end - href: https://docs.python.org/3/library/exceptions.html#UnicodeError.end + href: https://docs.python.org/3/builtins/exceptions.html#UnicodeError.end name: end uid: UnicodeError.end - fullName: UnicodeError.object - href: https://docs.python.org/3/library/exceptions.html#UnicodeError.object + href: https://docs.python.org/3/builtins/exceptions.html#UnicodeError.object name: object uid: UnicodeError.object - fullName: UnicodeError.reason - href: https://docs.python.org/3/library/exceptions.html#UnicodeError.reason + href: https://docs.python.org/3/builtins/exceptions.html#UnicodeError.reason name: reason uid: UnicodeError.reason - fullName: UnicodeError.start - href: https://docs.python.org/3/library/exceptions.html#UnicodeError.start + href: https://docs.python.org/3/builtins/exceptions.html#UnicodeError.start name: start uid: UnicodeError.start - fullName: __future__._Feature.compiler_flag @@ -2376,23 +2376,23 @@ references: name: traps uid: decimal.Context.traps - fullName: definition.__doc__ - href: https://docs.python.org/3/library/stdtypes.html#definition.__doc__ + href: https://docs.python.org/3/builtins/stdtypes.html#definition.__doc__ name: __doc__ uid: definition.__doc__ - fullName: definition.__module__ - href: https://docs.python.org/3/library/stdtypes.html#definition.__module__ + href: https://docs.python.org/3/builtins/stdtypes.html#definition.__module__ name: __module__ uid: definition.__module__ - fullName: definition.__name__ - href: https://docs.python.org/3/library/stdtypes.html#definition.__name__ + href: https://docs.python.org/3/builtins/stdtypes.html#definition.__name__ name: __name__ uid: definition.__name__ - fullName: definition.__qualname__ - href: https://docs.python.org/3/library/stdtypes.html#definition.__qualname__ + href: https://docs.python.org/3/builtins/stdtypes.html#definition.__qualname__ name: __qualname__ uid: definition.__qualname__ - fullName: definition.__type_params__ - href: https://docs.python.org/3/library/stdtypes.html#definition.__type_params__ + href: https://docs.python.org/3/builtins/stdtypes.html#definition.__type_params__ name: __type_params__ uid: definition.__type_params__ - fullName: doctest.DocTest.docstring @@ -2916,19 +2916,19 @@ references: name: keywords uid: functools.partial.keywords - fullName: genericalias.__args__ - href: https://docs.python.org/3/library/stdtypes.html#genericalias.__args__ + href: https://docs.python.org/3/builtins/stdtypes.html#genericalias.__args__ name: __args__ uid: genericalias.__args__ - fullName: genericalias.__origin__ - href: https://docs.python.org/3/library/stdtypes.html#genericalias.__origin__ + href: https://docs.python.org/3/builtins/stdtypes.html#genericalias.__origin__ name: __origin__ uid: genericalias.__origin__ - fullName: genericalias.__parameters__ - href: https://docs.python.org/3/library/stdtypes.html#genericalias.__parameters__ + href: https://docs.python.org/3/builtins/stdtypes.html#genericalias.__parameters__ name: __parameters__ uid: genericalias.__parameters__ - fullName: genericalias.__unpacked__ - href: https://docs.python.org/3/library/stdtypes.html#genericalias.__unpacked__ + href: https://docs.python.org/3/builtins/stdtypes.html#genericalias.__unpacked__ name: __unpacked__ uid: genericalias.__unpacked__ - fullName: gzip.GzipFile.mode @@ -4000,51 +4000,51 @@ references: name: colon uid: mailbox.Maildir.colon - fullName: memoryview.c_contiguous - href: https://docs.python.org/3/library/stdtypes.html#memoryview.c_contiguous + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.c_contiguous name: c_contiguous uid: memoryview.c_contiguous - fullName: memoryview.contiguous - href: https://docs.python.org/3/library/stdtypes.html#memoryview.contiguous + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.contiguous name: contiguous uid: memoryview.contiguous - fullName: memoryview.f_contiguous - href: https://docs.python.org/3/library/stdtypes.html#memoryview.f_contiguous + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.f_contiguous name: f_contiguous uid: memoryview.f_contiguous - fullName: memoryview.format - href: https://docs.python.org/3/library/stdtypes.html#memoryview.format + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.format name: format uid: memoryview.format - fullName: memoryview.itemsize - href: https://docs.python.org/3/library/stdtypes.html#memoryview.itemsize + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.itemsize name: itemsize uid: memoryview.itemsize - fullName: memoryview.nbytes - href: https://docs.python.org/3/library/stdtypes.html#memoryview.nbytes + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.nbytes name: nbytes uid: memoryview.nbytes - fullName: memoryview.ndim - href: https://docs.python.org/3/library/stdtypes.html#memoryview.ndim + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.ndim name: ndim uid: memoryview.ndim - fullName: memoryview.obj - href: https://docs.python.org/3/library/stdtypes.html#memoryview.obj + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.obj name: obj uid: memoryview.obj - fullName: memoryview.readonly - href: https://docs.python.org/3/library/stdtypes.html#memoryview.readonly + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.readonly name: readonly uid: memoryview.readonly - fullName: memoryview.shape - href: https://docs.python.org/3/library/stdtypes.html#memoryview.shape + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.shape name: shape uid: memoryview.shape - fullName: memoryview.strides - href: https://docs.python.org/3/library/stdtypes.html#memoryview.strides + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.strides name: strides uid: memoryview.strides - fullName: memoryview.suboffsets - href: https://docs.python.org/3/library/stdtypes.html#memoryview.suboffsets + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.suboffsets name: suboffsets uid: memoryview.suboffsets - fullName: method.__doc__ @@ -4576,7 +4576,7 @@ references: name: data uid: plistlib.UID.data - fullName: property.__name__ - href: https://docs.python.org/3/library/functions.html#property.__name__ + href: https://docs.python.org/3/builtins/functions.html#property.__name__ name: __name__ uid: property.__name__ - fullName: py_compile.PycInvalidationMode.CHECKED_HASH @@ -4652,15 +4652,15 @@ references: name: parent uid: pyclbr.Function.parent - fullName: range.start - href: https://docs.python.org/3/library/stdtypes.html#range.start + href: https://docs.python.org/3/builtins/stdtypes.html#range.start name: start uid: range.start - fullName: range.step - href: https://docs.python.org/3/library/stdtypes.html#range.step + href: https://docs.python.org/3/builtins/stdtypes.html#range.step name: step uid: range.step - fullName: range.stop - href: https://docs.python.org/3/library/stdtypes.html#range.stop + href: https://docs.python.org/3/builtins/stdtypes.html#range.stop name: stop uid: range.stop - fullName: re.Match.endpos @@ -4896,15 +4896,15 @@ references: name: avoids_symlink_attacks uid: shutil.rmtree.avoids_symlink_attacks - fullName: slice.start - href: https://docs.python.org/3/library/functions.html#slice.start + href: https://docs.python.org/3/builtins/functions.html#slice.start name: start uid: slice.start - fullName: slice.step - href: https://docs.python.org/3/library/functions.html#slice.step + href: https://docs.python.org/3/builtins/functions.html#slice.step name: step uid: slice.step - fullName: slice.stop - href: https://docs.python.org/3/library/functions.html#slice.stop + href: https://docs.python.org/3/builtins/functions.html#slice.stop name: stop uid: slice.stop - fullName: smtplib.SMTP.does_esmtp @@ -7080,23 +7080,23 @@ references: name: key uid: zoneinfo.ZoneInfo.key - fullName: BaseException.add_note - href: https://docs.python.org/3/library/exceptions.html#BaseException.add_note + href: https://docs.python.org/3/builtins/exceptions.html#BaseException.add_note name: add_note uid: BaseException.add_note - fullName: BaseException.with_traceback - href: https://docs.python.org/3/library/exceptions.html#BaseException.with_traceback + href: https://docs.python.org/3/builtins/exceptions.html#BaseException.with_traceback name: with_traceback uid: BaseException.with_traceback - fullName: BaseExceptionGroup.derive - href: https://docs.python.org/3/library/exceptions.html#BaseExceptionGroup.derive + href: https://docs.python.org/3/builtins/exceptions.html#BaseExceptionGroup.derive name: derive uid: BaseExceptionGroup.derive - fullName: BaseExceptionGroup.split - href: https://docs.python.org/3/library/exceptions.html#BaseExceptionGroup.split + href: https://docs.python.org/3/builtins/exceptions.html#BaseExceptionGroup.split name: split uid: BaseExceptionGroup.split - fullName: BaseExceptionGroup.subgroup - href: https://docs.python.org/3/library/exceptions.html#BaseExceptionGroup.subgroup + href: https://docs.python.org/3/builtins/exceptions.html#BaseExceptionGroup.subgroup name: subgroup uid: BaseExceptionGroup.subgroup - fullName: __future__._Feature.getMandatoryRelease @@ -8280,375 +8280,375 @@ references: name: enable uid: bdb.Breakpoint.enable - fullName: bytearray.append - href: https://docs.python.org/3/library/stdtypes.html#bytearray.append + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.append name: append uid: bytearray.append - fullName: bytearray.capitalize - href: https://docs.python.org/3/library/stdtypes.html#bytearray.capitalize + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.capitalize name: capitalize uid: bytearray.capitalize - fullName: bytearray.center - href: https://docs.python.org/3/library/stdtypes.html#bytearray.center + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.center name: center uid: bytearray.center - fullName: bytearray.clear - href: https://docs.python.org/3/library/stdtypes.html#bytearray.clear + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.clear name: clear uid: bytearray.clear - fullName: bytearray.copy - href: https://docs.python.org/3/library/stdtypes.html#bytearray.copy + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.copy name: copy uid: bytearray.copy - fullName: bytearray.count - href: https://docs.python.org/3/library/stdtypes.html#bytearray.count + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.count name: count uid: bytearray.count - fullName: bytearray.decode - href: https://docs.python.org/3/library/stdtypes.html#bytearray.decode + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.decode name: decode uid: bytearray.decode - fullName: bytearray.endswith - href: https://docs.python.org/3/library/stdtypes.html#bytearray.endswith + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.endswith name: endswith uid: bytearray.endswith - fullName: bytearray.expandtabs - href: https://docs.python.org/3/library/stdtypes.html#bytearray.expandtabs + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.expandtabs name: expandtabs uid: bytearray.expandtabs - fullName: bytearray.extend - href: https://docs.python.org/3/library/stdtypes.html#bytearray.extend + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.extend name: extend uid: bytearray.extend - fullName: bytearray.find - href: https://docs.python.org/3/library/stdtypes.html#bytearray.find + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.find name: find uid: bytearray.find - fullName: bytearray.fromhex - href: https://docs.python.org/3/library/stdtypes.html#bytearray.fromhex + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.fromhex name: fromhex uid: bytearray.fromhex - fullName: bytearray.hex - href: https://docs.python.org/3/library/stdtypes.html#bytearray.hex + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.hex name: hex uid: bytearray.hex - fullName: bytearray.index - href: https://docs.python.org/3/library/stdtypes.html#bytearray.index + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.index name: index uid: bytearray.index - fullName: bytearray.insert - href: https://docs.python.org/3/library/stdtypes.html#bytearray.insert + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.insert name: insert uid: bytearray.insert - fullName: bytearray.isalnum - href: https://docs.python.org/3/library/stdtypes.html#bytearray.isalnum + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.isalnum name: isalnum uid: bytearray.isalnum - fullName: bytearray.isalpha - href: https://docs.python.org/3/library/stdtypes.html#bytearray.isalpha + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.isalpha name: isalpha uid: bytearray.isalpha - fullName: bytearray.isascii - href: https://docs.python.org/3/library/stdtypes.html#bytearray.isascii + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.isascii name: isascii uid: bytearray.isascii - fullName: bytearray.isdigit - href: https://docs.python.org/3/library/stdtypes.html#bytearray.isdigit + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.isdigit name: isdigit uid: bytearray.isdigit - fullName: bytearray.islower - href: https://docs.python.org/3/library/stdtypes.html#bytearray.islower + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.islower name: islower uid: bytearray.islower - fullName: bytearray.isspace - href: https://docs.python.org/3/library/stdtypes.html#bytearray.isspace + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.isspace name: isspace uid: bytearray.isspace - fullName: bytearray.istitle - href: https://docs.python.org/3/library/stdtypes.html#bytearray.istitle + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.istitle name: istitle uid: bytearray.istitle - fullName: bytearray.isupper - href: https://docs.python.org/3/library/stdtypes.html#bytearray.isupper + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.isupper name: isupper uid: bytearray.isupper - fullName: bytearray.join - href: https://docs.python.org/3/library/stdtypes.html#bytearray.join + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.join name: join uid: bytearray.join - fullName: bytearray.ljust - href: https://docs.python.org/3/library/stdtypes.html#bytearray.ljust + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.ljust name: ljust uid: bytearray.ljust - fullName: bytearray.lower - href: https://docs.python.org/3/library/stdtypes.html#bytearray.lower + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.lower name: lower uid: bytearray.lower - fullName: bytearray.lstrip - href: https://docs.python.org/3/library/stdtypes.html#bytearray.lstrip + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.lstrip name: lstrip uid: bytearray.lstrip - fullName: bytearray.maketrans - href: https://docs.python.org/3/library/stdtypes.html#bytearray.maketrans + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.maketrans name: maketrans uid: bytearray.maketrans - fullName: bytearray.partition - href: https://docs.python.org/3/library/stdtypes.html#bytearray.partition + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.partition name: partition uid: bytearray.partition - fullName: bytearray.pop - href: https://docs.python.org/3/library/stdtypes.html#bytearray.pop + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.pop name: pop uid: bytearray.pop - fullName: bytearray.remove - href: https://docs.python.org/3/library/stdtypes.html#bytearray.remove + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.remove name: remove uid: bytearray.remove - fullName: bytearray.removeprefix - href: https://docs.python.org/3/library/stdtypes.html#bytearray.removeprefix + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.removeprefix name: removeprefix uid: bytearray.removeprefix - fullName: bytearray.removesuffix - href: https://docs.python.org/3/library/stdtypes.html#bytearray.removesuffix + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.removesuffix name: removesuffix uid: bytearray.removesuffix - fullName: bytearray.replace - href: https://docs.python.org/3/library/stdtypes.html#bytearray.replace + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.replace name: replace uid: bytearray.replace - fullName: bytearray.resize - href: https://docs.python.org/3/library/stdtypes.html#bytearray.resize + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.resize name: resize uid: bytearray.resize - fullName: bytearray.reverse - href: https://docs.python.org/3/library/stdtypes.html#bytearray.reverse + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.reverse name: reverse uid: bytearray.reverse - fullName: bytearray.rfind - href: https://docs.python.org/3/library/stdtypes.html#bytearray.rfind + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.rfind name: rfind uid: bytearray.rfind - fullName: bytearray.rindex - href: https://docs.python.org/3/library/stdtypes.html#bytearray.rindex + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.rindex name: rindex uid: bytearray.rindex - fullName: bytearray.rjust - href: https://docs.python.org/3/library/stdtypes.html#bytearray.rjust + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.rjust name: rjust uid: bytearray.rjust - fullName: bytearray.rpartition - href: https://docs.python.org/3/library/stdtypes.html#bytearray.rpartition + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.rpartition name: rpartition uid: bytearray.rpartition - fullName: bytearray.rsplit - href: https://docs.python.org/3/library/stdtypes.html#bytearray.rsplit + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.rsplit name: rsplit uid: bytearray.rsplit - fullName: bytearray.rstrip - href: https://docs.python.org/3/library/stdtypes.html#bytearray.rstrip + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.rstrip name: rstrip uid: bytearray.rstrip - fullName: bytearray.split - href: https://docs.python.org/3/library/stdtypes.html#bytearray.split + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.split name: split uid: bytearray.split - fullName: bytearray.splitlines - href: https://docs.python.org/3/library/stdtypes.html#bytearray.splitlines + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.splitlines name: splitlines uid: bytearray.splitlines - fullName: bytearray.startswith - href: https://docs.python.org/3/library/stdtypes.html#bytearray.startswith + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.startswith name: startswith uid: bytearray.startswith - fullName: bytearray.strip - href: https://docs.python.org/3/library/stdtypes.html#bytearray.strip + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.strip name: strip uid: bytearray.strip - fullName: bytearray.swapcase - href: https://docs.python.org/3/library/stdtypes.html#bytearray.swapcase + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.swapcase name: swapcase uid: bytearray.swapcase - fullName: bytearray.title - href: https://docs.python.org/3/library/stdtypes.html#bytearray.title + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.title name: title uid: bytearray.title - fullName: bytearray.translate - href: https://docs.python.org/3/library/stdtypes.html#bytearray.translate + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.translate name: translate uid: bytearray.translate - fullName: bytearray.upper - href: https://docs.python.org/3/library/stdtypes.html#bytearray.upper + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.upper name: upper uid: bytearray.upper - fullName: bytearray.zfill - href: https://docs.python.org/3/library/stdtypes.html#bytearray.zfill + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray.zfill name: zfill uid: bytearray.zfill - fullName: bytes.capitalize - href: https://docs.python.org/3/library/stdtypes.html#bytes.capitalize + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.capitalize name: capitalize uid: bytes.capitalize - fullName: bytes.center - href: https://docs.python.org/3/library/stdtypes.html#bytes.center + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.center name: center uid: bytes.center - fullName: bytes.count - href: https://docs.python.org/3/library/stdtypes.html#bytes.count + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.count name: count uid: bytes.count - fullName: bytes.decode - href: https://docs.python.org/3/library/stdtypes.html#bytes.decode + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.decode name: decode uid: bytes.decode - fullName: bytes.endswith - href: https://docs.python.org/3/library/stdtypes.html#bytes.endswith + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.endswith name: endswith uid: bytes.endswith - fullName: bytes.expandtabs - href: https://docs.python.org/3/library/stdtypes.html#bytes.expandtabs + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.expandtabs name: expandtabs uid: bytes.expandtabs - fullName: bytes.find - href: https://docs.python.org/3/library/stdtypes.html#bytes.find + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.find name: find uid: bytes.find - fullName: bytes.fromhex - href: https://docs.python.org/3/library/stdtypes.html#bytes.fromhex + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.fromhex name: fromhex uid: bytes.fromhex - fullName: bytes.hex - href: https://docs.python.org/3/library/stdtypes.html#bytes.hex + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.hex name: hex uid: bytes.hex - fullName: bytes.index - href: https://docs.python.org/3/library/stdtypes.html#bytes.index + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.index name: index uid: bytes.index - fullName: bytes.isalnum - href: https://docs.python.org/3/library/stdtypes.html#bytes.isalnum + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.isalnum name: isalnum uid: bytes.isalnum - fullName: bytes.isalpha - href: https://docs.python.org/3/library/stdtypes.html#bytes.isalpha + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.isalpha name: isalpha uid: bytes.isalpha - fullName: bytes.isascii - href: https://docs.python.org/3/library/stdtypes.html#bytes.isascii + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.isascii name: isascii uid: bytes.isascii - fullName: bytes.isdigit - href: https://docs.python.org/3/library/stdtypes.html#bytes.isdigit + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.isdigit name: isdigit uid: bytes.isdigit - fullName: bytes.islower - href: https://docs.python.org/3/library/stdtypes.html#bytes.islower + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.islower name: islower uid: bytes.islower - fullName: bytes.isspace - href: https://docs.python.org/3/library/stdtypes.html#bytes.isspace + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.isspace name: isspace uid: bytes.isspace - fullName: bytes.istitle - href: https://docs.python.org/3/library/stdtypes.html#bytes.istitle + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.istitle name: istitle uid: bytes.istitle - fullName: bytes.isupper - href: https://docs.python.org/3/library/stdtypes.html#bytes.isupper + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.isupper name: isupper uid: bytes.isupper - fullName: bytes.join - href: https://docs.python.org/3/library/stdtypes.html#bytes.join + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.join name: join uid: bytes.join - fullName: bytes.ljust - href: https://docs.python.org/3/library/stdtypes.html#bytes.ljust + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.ljust name: ljust uid: bytes.ljust - fullName: bytes.lower - href: https://docs.python.org/3/library/stdtypes.html#bytes.lower + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.lower name: lower uid: bytes.lower - fullName: bytes.lstrip - href: https://docs.python.org/3/library/stdtypes.html#bytes.lstrip + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.lstrip name: lstrip uid: bytes.lstrip - fullName: bytes.maketrans - href: https://docs.python.org/3/library/stdtypes.html#bytes.maketrans + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.maketrans name: maketrans uid: bytes.maketrans - fullName: bytes.partition - href: https://docs.python.org/3/library/stdtypes.html#bytes.partition + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.partition name: partition uid: bytes.partition - fullName: bytes.removeprefix - href: https://docs.python.org/3/library/stdtypes.html#bytes.removeprefix + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.removeprefix name: removeprefix uid: bytes.removeprefix - fullName: bytes.removesuffix - href: https://docs.python.org/3/library/stdtypes.html#bytes.removesuffix + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.removesuffix name: removesuffix uid: bytes.removesuffix - fullName: bytes.replace - href: https://docs.python.org/3/library/stdtypes.html#bytes.replace + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.replace name: replace uid: bytes.replace - fullName: bytes.rfind - href: https://docs.python.org/3/library/stdtypes.html#bytes.rfind + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.rfind name: rfind uid: bytes.rfind - fullName: bytes.rindex - href: https://docs.python.org/3/library/stdtypes.html#bytes.rindex + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.rindex name: rindex uid: bytes.rindex - fullName: bytes.rjust - href: https://docs.python.org/3/library/stdtypes.html#bytes.rjust + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.rjust name: rjust uid: bytes.rjust - fullName: bytes.rpartition - href: https://docs.python.org/3/library/stdtypes.html#bytes.rpartition + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.rpartition name: rpartition uid: bytes.rpartition - fullName: bytes.rsplit - href: https://docs.python.org/3/library/stdtypes.html#bytes.rsplit + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.rsplit name: rsplit uid: bytes.rsplit - fullName: bytes.rstrip - href: https://docs.python.org/3/library/stdtypes.html#bytes.rstrip + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.rstrip name: rstrip uid: bytes.rstrip - fullName: bytes.split - href: https://docs.python.org/3/library/stdtypes.html#bytes.split + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.split name: split uid: bytes.split - fullName: bytes.splitlines - href: https://docs.python.org/3/library/stdtypes.html#bytes.splitlines + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.splitlines name: splitlines uid: bytes.splitlines - fullName: bytes.startswith - href: https://docs.python.org/3/library/stdtypes.html#bytes.startswith + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.startswith name: startswith uid: bytes.startswith - fullName: bytes.strip - href: https://docs.python.org/3/library/stdtypes.html#bytes.strip + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.strip name: strip uid: bytes.strip - fullName: bytes.swapcase - href: https://docs.python.org/3/library/stdtypes.html#bytes.swapcase + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.swapcase name: swapcase uid: bytes.swapcase - fullName: bytes.title - href: https://docs.python.org/3/library/stdtypes.html#bytes.title + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.title name: title uid: bytes.title - fullName: bytes.translate - href: https://docs.python.org/3/library/stdtypes.html#bytes.translate + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.translate name: translate uid: bytes.translate - fullName: bytes.upper - href: https://docs.python.org/3/library/stdtypes.html#bytes.upper + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.upper name: upper uid: bytes.upper - fullName: bytes.zfill - href: https://docs.python.org/3/library/stdtypes.html#bytes.zfill + href: https://docs.python.org/3/builtins/stdtypes.html#bytes.zfill name: zfill uid: bytes.zfill - fullName: bz2.BZ2Compressor.compress @@ -9072,7 +9072,7 @@ references: name: _replace uid: collections.somenamedtuple._replace - fullName: complex.from_number - href: https://docs.python.org/3/library/stdtypes.html#complex.from_number + href: https://docs.python.org/3/builtins/stdtypes.html#complex.from_number name: from_number uid: complex.from_number - fullName: compression.zstd.CompressionParameter.bounds @@ -9276,7 +9276,7 @@ references: name: set uid: configparser.RawConfigParser.set - fullName: container.__iter__ - href: https://docs.python.org/3/library/stdtypes.html#container.__iter__ + href: https://docs.python.org/3/builtins/stdtypes.html#container.__iter__ name: __iter__ uid: container.__iter__ - fullName: contextlib.AsyncExitStack.aclose @@ -9316,11 +9316,11 @@ references: name: push uid: contextlib.ExitStack.push - fullName: contextmanager.__enter__ - href: https://docs.python.org/3/library/stdtypes.html#contextmanager.__enter__ + href: https://docs.python.org/3/builtins/stdtypes.html#contextmanager.__enter__ name: __enter__ uid: contextmanager.__enter__ - fullName: contextmanager.__exit__ - href: https://docs.python.org/3/library/stdtypes.html#contextmanager.__exit__ + href: https://docs.python.org/3/builtins/stdtypes.html#contextmanager.__exit__ name: __exit__ uid: contextmanager.__exit__ - fullName: contextvars.Context.copy @@ -10556,47 +10556,47 @@ references: name: to_integral_value uid: decimal.Decimal.to_integral_value - fullName: dict.clear - href: https://docs.python.org/3/library/stdtypes.html#dict.clear + href: https://docs.python.org/3/builtins/stdtypes.html#dict.clear name: clear uid: dict.clear - fullName: dict.copy - href: https://docs.python.org/3/library/stdtypes.html#dict.copy + href: https://docs.python.org/3/builtins/stdtypes.html#dict.copy name: copy uid: dict.copy - fullName: dict.fromkeys - href: https://docs.python.org/3/library/stdtypes.html#dict.fromkeys + href: https://docs.python.org/3/builtins/stdtypes.html#dict.fromkeys name: fromkeys uid: dict.fromkeys - fullName: dict.get - href: https://docs.python.org/3/library/stdtypes.html#dict.get + href: https://docs.python.org/3/builtins/stdtypes.html#dict.get name: get uid: dict.get - fullName: dict.items - href: https://docs.python.org/3/library/stdtypes.html#dict.items + href: https://docs.python.org/3/builtins/stdtypes.html#dict.items name: items uid: dict.items - fullName: dict.keys - href: https://docs.python.org/3/library/stdtypes.html#dict.keys + href: https://docs.python.org/3/builtins/stdtypes.html#dict.keys name: keys uid: dict.keys - fullName: dict.pop - href: https://docs.python.org/3/library/stdtypes.html#dict.pop + href: https://docs.python.org/3/builtins/stdtypes.html#dict.pop name: pop uid: dict.pop - fullName: dict.popitem - href: https://docs.python.org/3/library/stdtypes.html#dict.popitem + href: https://docs.python.org/3/builtins/stdtypes.html#dict.popitem name: popitem uid: dict.popitem - fullName: dict.setdefault - href: https://docs.python.org/3/library/stdtypes.html#dict.setdefault + href: https://docs.python.org/3/builtins/stdtypes.html#dict.setdefault name: setdefault uid: dict.setdefault - fullName: dict.update - href: https://docs.python.org/3/library/stdtypes.html#dict.update + href: https://docs.python.org/3/builtins/stdtypes.html#dict.update name: update uid: dict.update - fullName: dict.values - href: https://docs.python.org/3/library/stdtypes.html#dict.values + href: https://docs.python.org/3/builtins/stdtypes.html#dict.values name: values uid: dict.values - fullName: difflib.Differ.__init__ @@ -11432,23 +11432,23 @@ references: name: report_partial_closure uid: filecmp.dircmp.report_partial_closure - fullName: float.as_integer_ratio - href: https://docs.python.org/3/library/stdtypes.html#float.as_integer_ratio + href: https://docs.python.org/3/builtins/stdtypes.html#float.as_integer_ratio name: as_integer_ratio uid: float.as_integer_ratio - fullName: float.from_number - href: https://docs.python.org/3/library/stdtypes.html#float.from_number + href: https://docs.python.org/3/builtins/stdtypes.html#float.from_number name: from_number uid: float.from_number - fullName: float.fromhex - href: https://docs.python.org/3/library/stdtypes.html#float.fromhex + href: https://docs.python.org/3/builtins/stdtypes.html#float.fromhex name: fromhex uid: float.fromhex - fullName: float.hex - href: https://docs.python.org/3/library/stdtypes.html#float.hex + href: https://docs.python.org/3/builtins/stdtypes.html#float.hex name: hex uid: float.hex - fullName: float.is_integer - href: https://docs.python.org/3/library/stdtypes.html#float.is_integer + href: https://docs.python.org/3/builtins/stdtypes.html#float.is_integer name: is_integer uid: float.is_integer - fullName: fractions.Fraction.__ceil__ @@ -11496,35 +11496,35 @@ references: name: clear uid: frame.clear - fullName: frozenset.copy - href: https://docs.python.org/3/library/stdtypes.html#frozenset.copy + href: https://docs.python.org/3/builtins/stdtypes.html#frozenset.copy name: copy uid: frozenset.copy - fullName: frozenset.difference - href: https://docs.python.org/3/library/stdtypes.html#frozenset.difference + href: https://docs.python.org/3/builtins/stdtypes.html#frozenset.difference name: difference uid: frozenset.difference - fullName: frozenset.intersection - href: https://docs.python.org/3/library/stdtypes.html#frozenset.intersection + href: https://docs.python.org/3/builtins/stdtypes.html#frozenset.intersection name: intersection uid: frozenset.intersection - fullName: frozenset.isdisjoint - href: https://docs.python.org/3/library/stdtypes.html#frozenset.isdisjoint + href: https://docs.python.org/3/builtins/stdtypes.html#frozenset.isdisjoint name: isdisjoint uid: frozenset.isdisjoint - fullName: frozenset.issubset - href: https://docs.python.org/3/library/stdtypes.html#frozenset.issubset + href: https://docs.python.org/3/builtins/stdtypes.html#frozenset.issubset name: issubset uid: frozenset.issubset - fullName: frozenset.issuperset - href: https://docs.python.org/3/library/stdtypes.html#frozenset.issuperset + href: https://docs.python.org/3/builtins/stdtypes.html#frozenset.issuperset name: issuperset uid: frozenset.issuperset - fullName: frozenset.symmetric_difference - href: https://docs.python.org/3/library/stdtypes.html#frozenset.symmetric_difference + href: https://docs.python.org/3/builtins/stdtypes.html#frozenset.symmetric_difference name: symmetric_difference uid: frozenset.symmetric_difference - fullName: frozenset.union - href: https://docs.python.org/3/library/stdtypes.html#frozenset.union + href: https://docs.python.org/3/builtins/stdtypes.html#frozenset.union name: union uid: frozenset.union - fullName: ftplib.FTP.abort @@ -12636,27 +12636,27 @@ references: name: replace uid: inspect.Signature.replace - fullName: int.as_integer_ratio - href: https://docs.python.org/3/library/stdtypes.html#int.as_integer_ratio + href: https://docs.python.org/3/builtins/stdtypes.html#int.as_integer_ratio name: as_integer_ratio uid: int.as_integer_ratio - fullName: int.bit_count - href: https://docs.python.org/3/library/stdtypes.html#int.bit_count + href: https://docs.python.org/3/builtins/stdtypes.html#int.bit_count name: bit_count uid: int.bit_count - fullName: int.bit_length - href: https://docs.python.org/3/library/stdtypes.html#int.bit_length + href: https://docs.python.org/3/builtins/stdtypes.html#int.bit_length name: bit_length uid: int.bit_length - fullName: int.from_bytes - href: https://docs.python.org/3/library/stdtypes.html#int.from_bytes + href: https://docs.python.org/3/builtins/stdtypes.html#int.from_bytes name: from_bytes uid: int.from_bytes - fullName: int.is_integer - href: https://docs.python.org/3/library/stdtypes.html#int.is_integer + href: https://docs.python.org/3/builtins/stdtypes.html#int.is_integer name: is_integer uid: int.is_integer - fullName: int.to_bytes - href: https://docs.python.org/3/library/stdtypes.html#int.to_bytes + href: https://docs.python.org/3/builtins/stdtypes.html#int.to_bytes name: to_bytes uid: int.to_bytes - fullName: io.BufferedIOBase.detach @@ -12912,11 +12912,11 @@ references: name: supernet_of uid: ipaddress.IPv6Network.supernet_of - fullName: iterator.__iter__ - href: https://docs.python.org/3/library/stdtypes.html#iterator.__iter__ + href: https://docs.python.org/3/builtins/stdtypes.html#iterator.__iter__ name: __iter__ uid: iterator.__iter__ - fullName: iterator.__next__ - href: https://docs.python.org/3/library/stdtypes.html#iterator.__next__ + href: https://docs.python.org/3/builtins/stdtypes.html#iterator.__next__ name: __next__ uid: iterator.__next__ - fullName: itertools.chain.from_iterable @@ -12944,47 +12944,47 @@ references: name: iterencode uid: json.JSONEncoder.iterencode - fullName: list.append - href: https://docs.python.org/3/library/stdtypes.html#list.append + href: https://docs.python.org/3/builtins/stdtypes.html#list.append name: append uid: list.append - fullName: list.clear - href: https://docs.python.org/3/library/stdtypes.html#list.clear + href: https://docs.python.org/3/builtins/stdtypes.html#list.clear name: clear uid: list.clear - fullName: list.copy - href: https://docs.python.org/3/library/stdtypes.html#list.copy + href: https://docs.python.org/3/builtins/stdtypes.html#list.copy name: copy uid: list.copy - fullName: list.count - href: https://docs.python.org/3/library/stdtypes.html#list.count + href: https://docs.python.org/3/builtins/stdtypes.html#list.count name: count uid: list.count - fullName: list.extend - href: https://docs.python.org/3/library/stdtypes.html#list.extend + href: https://docs.python.org/3/builtins/stdtypes.html#list.extend name: extend uid: list.extend - fullName: list.index - href: https://docs.python.org/3/library/stdtypes.html#list.index + href: https://docs.python.org/3/builtins/stdtypes.html#list.index name: index uid: list.index - fullName: list.insert - href: https://docs.python.org/3/library/stdtypes.html#list.insert + href: https://docs.python.org/3/builtins/stdtypes.html#list.insert name: insert uid: list.insert - fullName: list.pop - href: https://docs.python.org/3/library/stdtypes.html#list.pop + href: https://docs.python.org/3/builtins/stdtypes.html#list.pop name: pop uid: list.pop - fullName: list.remove - href: https://docs.python.org/3/library/stdtypes.html#list.remove + href: https://docs.python.org/3/builtins/stdtypes.html#list.remove name: remove uid: list.remove - fullName: list.reverse - href: https://docs.python.org/3/library/stdtypes.html#list.reverse + href: https://docs.python.org/3/builtins/stdtypes.html#list.reverse name: reverse uid: list.reverse - fullName: list.sort - href: https://docs.python.org/3/library/stdtypes.html#list.sort + href: https://docs.python.org/3/builtins/stdtypes.html#list.sort name: sort uid: list.sort - fullName: logging.BufferingFormatter.format @@ -13860,39 +13860,39 @@ references: name: set_from uid: mailbox.mboxMessage.set_from - fullName: memoryview.__eq__ - href: https://docs.python.org/3/library/stdtypes.html#memoryview.__eq__ + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.__eq__ name: __eq__ uid: memoryview.__eq__ - fullName: memoryview.cast - href: https://docs.python.org/3/library/stdtypes.html#memoryview.cast + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.cast name: cast uid: memoryview.cast - fullName: memoryview.count - href: https://docs.python.org/3/library/stdtypes.html#memoryview.count + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.count name: count uid: memoryview.count - fullName: memoryview.hex - href: https://docs.python.org/3/library/stdtypes.html#memoryview.hex + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.hex name: hex uid: memoryview.hex - fullName: memoryview.index - href: https://docs.python.org/3/library/stdtypes.html#memoryview.index + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.index name: index uid: memoryview.index - fullName: memoryview.release - href: https://docs.python.org/3/library/stdtypes.html#memoryview.release + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.release name: release uid: memoryview.release - fullName: memoryview.tobytes - href: https://docs.python.org/3/library/stdtypes.html#memoryview.tobytes + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.tobytes name: tobytes uid: memoryview.tobytes - fullName: memoryview.tolist - href: https://docs.python.org/3/library/stdtypes.html#memoryview.tolist + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.tolist name: tolist uid: memoryview.tolist - fullName: memoryview.toreadonly - href: https://docs.python.org/3/library/stdtypes.html#memoryview.toreadonly + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview.toreadonly name: toreadonly uid: memoryview.toreadonly - fullName: mimetypes.MimeTypes.add_type @@ -15440,11 +15440,11 @@ references: name: setstate uid: random.Random.setstate - fullName: range.count - href: https://docs.python.org/3/library/stdtypes.html#range.count + href: https://docs.python.org/3/builtins/stdtypes.html#range.count name: count uid: range.count - fullName: range.index - href: https://docs.python.org/3/library/stdtypes.html#range.index + href: https://docs.python.org/3/builtins/stdtypes.html#range.index name: index uid: range.index - fullName: re.Match.__getitem__ @@ -15668,111 +15668,111 @@ references: name: fileno uid: selectors.KqueueSelector.fileno - fullName: sequence.append - href: https://docs.python.org/3/library/stdtypes.html#sequence.append + href: https://docs.python.org/3/builtins/stdtypes.html#sequence.append name: append uid: sequence.append - fullName: sequence.clear - href: https://docs.python.org/3/library/stdtypes.html#sequence.clear + href: https://docs.python.org/3/builtins/stdtypes.html#sequence.clear name: clear uid: sequence.clear - fullName: sequence.copy - href: https://docs.python.org/3/library/stdtypes.html#sequence.copy + href: https://docs.python.org/3/builtins/stdtypes.html#sequence.copy name: copy uid: sequence.copy - fullName: sequence.count - href: https://docs.python.org/3/library/stdtypes.html#sequence.count + href: https://docs.python.org/3/builtins/stdtypes.html#sequence.count name: count uid: sequence.count - fullName: sequence.extend - href: https://docs.python.org/3/library/stdtypes.html#sequence.extend + href: https://docs.python.org/3/builtins/stdtypes.html#sequence.extend name: extend uid: sequence.extend - fullName: sequence.index - href: https://docs.python.org/3/library/stdtypes.html#sequence.index + href: https://docs.python.org/3/builtins/stdtypes.html#sequence.index name: index uid: sequence.index - fullName: sequence.insert - href: https://docs.python.org/3/library/stdtypes.html#sequence.insert + href: https://docs.python.org/3/builtins/stdtypes.html#sequence.insert name: insert uid: sequence.insert - fullName: sequence.pop - href: https://docs.python.org/3/library/stdtypes.html#sequence.pop + href: https://docs.python.org/3/builtins/stdtypes.html#sequence.pop name: pop uid: sequence.pop - fullName: sequence.remove - href: https://docs.python.org/3/library/stdtypes.html#sequence.remove + href: https://docs.python.org/3/builtins/stdtypes.html#sequence.remove name: remove uid: sequence.remove - fullName: sequence.reverse - href: https://docs.python.org/3/library/stdtypes.html#sequence.reverse + href: https://docs.python.org/3/builtins/stdtypes.html#sequence.reverse name: reverse uid: sequence.reverse - fullName: set.add - href: https://docs.python.org/3/library/stdtypes.html#set.add + href: https://docs.python.org/3/builtins/stdtypes.html#set.add name: add uid: set.add - fullName: set.clear - href: https://docs.python.org/3/library/stdtypes.html#set.clear + href: https://docs.python.org/3/builtins/stdtypes.html#set.clear name: clear uid: set.clear - fullName: set.copy - href: https://docs.python.org/3/library/stdtypes.html#set.copy + href: https://docs.python.org/3/builtins/stdtypes.html#set.copy name: copy uid: set.copy - fullName: set.difference - href: https://docs.python.org/3/library/stdtypes.html#set.difference + href: https://docs.python.org/3/builtins/stdtypes.html#set.difference name: difference uid: set.difference - fullName: set.difference_update - href: https://docs.python.org/3/library/stdtypes.html#set.difference_update + href: https://docs.python.org/3/builtins/stdtypes.html#set.difference_update name: difference_update uid: set.difference_update - fullName: set.discard - href: https://docs.python.org/3/library/stdtypes.html#set.discard + href: https://docs.python.org/3/builtins/stdtypes.html#set.discard name: discard uid: set.discard - fullName: set.intersection - href: https://docs.python.org/3/library/stdtypes.html#set.intersection + href: https://docs.python.org/3/builtins/stdtypes.html#set.intersection name: intersection uid: set.intersection - fullName: set.intersection_update - href: https://docs.python.org/3/library/stdtypes.html#set.intersection_update + href: https://docs.python.org/3/builtins/stdtypes.html#set.intersection_update name: intersection_update uid: set.intersection_update - fullName: set.isdisjoint - href: https://docs.python.org/3/library/stdtypes.html#set.isdisjoint + href: https://docs.python.org/3/builtins/stdtypes.html#set.isdisjoint name: isdisjoint uid: set.isdisjoint - fullName: set.issubset - href: https://docs.python.org/3/library/stdtypes.html#set.issubset + href: https://docs.python.org/3/builtins/stdtypes.html#set.issubset name: issubset uid: set.issubset - fullName: set.issuperset - href: https://docs.python.org/3/library/stdtypes.html#set.issuperset + href: https://docs.python.org/3/builtins/stdtypes.html#set.issuperset name: issuperset uid: set.issuperset - fullName: set.pop - href: https://docs.python.org/3/library/stdtypes.html#set.pop + href: https://docs.python.org/3/builtins/stdtypes.html#set.pop name: pop uid: set.pop - fullName: set.remove - href: https://docs.python.org/3/library/stdtypes.html#set.remove + href: https://docs.python.org/3/builtins/stdtypes.html#set.remove name: remove uid: set.remove - fullName: set.symmetric_difference - href: https://docs.python.org/3/library/stdtypes.html#set.symmetric_difference + href: https://docs.python.org/3/builtins/stdtypes.html#set.symmetric_difference name: symmetric_difference uid: set.symmetric_difference - fullName: set.symmetric_difference_update - href: https://docs.python.org/3/library/stdtypes.html#set.symmetric_difference_update + href: https://docs.python.org/3/builtins/stdtypes.html#set.symmetric_difference_update name: symmetric_difference_update uid: set.symmetric_difference_update - fullName: set.union - href: https://docs.python.org/3/library/stdtypes.html#set.union + href: https://docs.python.org/3/builtins/stdtypes.html#set.union name: union uid: set.union - fullName: set.update - href: https://docs.python.org/3/library/stdtypes.html#set.update + href: https://docs.python.org/3/builtins/stdtypes.html#set.update name: update uid: set.update - fullName: shelve.Shelf.close @@ -16424,191 +16424,191 @@ references: name: zscore uid: statistics.NormalDist.zscore - fullName: str.capitalize - href: https://docs.python.org/3/library/stdtypes.html#str.capitalize + href: https://docs.python.org/3/builtins/stdtypes.html#str.capitalize name: capitalize uid: str.capitalize - fullName: str.casefold - href: https://docs.python.org/3/library/stdtypes.html#str.casefold + href: https://docs.python.org/3/builtins/stdtypes.html#str.casefold name: casefold uid: str.casefold - fullName: str.center - href: https://docs.python.org/3/library/stdtypes.html#str.center + href: https://docs.python.org/3/builtins/stdtypes.html#str.center name: center uid: str.center - fullName: str.count - href: https://docs.python.org/3/library/stdtypes.html#str.count + href: https://docs.python.org/3/builtins/stdtypes.html#str.count name: count uid: str.count - fullName: str.encode - href: https://docs.python.org/3/library/stdtypes.html#str.encode + href: https://docs.python.org/3/builtins/stdtypes.html#str.encode name: encode uid: str.encode - fullName: str.endswith - href: https://docs.python.org/3/library/stdtypes.html#str.endswith + href: https://docs.python.org/3/builtins/stdtypes.html#str.endswith name: endswith uid: str.endswith - fullName: str.expandtabs - href: https://docs.python.org/3/library/stdtypes.html#str.expandtabs + href: https://docs.python.org/3/builtins/stdtypes.html#str.expandtabs name: expandtabs uid: str.expandtabs - fullName: str.find - href: https://docs.python.org/3/library/stdtypes.html#str.find + href: https://docs.python.org/3/builtins/stdtypes.html#str.find name: find uid: str.find - fullName: str.format - href: https://docs.python.org/3/library/stdtypes.html#str.format + href: https://docs.python.org/3/builtins/stdtypes.html#str.format name: format uid: str.format - fullName: str.format_map - href: https://docs.python.org/3/library/stdtypes.html#str.format_map + href: https://docs.python.org/3/builtins/stdtypes.html#str.format_map name: format_map uid: str.format_map - fullName: str.index - href: https://docs.python.org/3/library/stdtypes.html#str.index + href: https://docs.python.org/3/builtins/stdtypes.html#str.index name: index uid: str.index - fullName: str.isalnum - href: https://docs.python.org/3/library/stdtypes.html#str.isalnum + href: https://docs.python.org/3/builtins/stdtypes.html#str.isalnum name: isalnum uid: str.isalnum - fullName: str.isalpha - href: https://docs.python.org/3/library/stdtypes.html#str.isalpha + href: https://docs.python.org/3/builtins/stdtypes.html#str.isalpha name: isalpha uid: str.isalpha - fullName: str.isascii - href: https://docs.python.org/3/library/stdtypes.html#str.isascii + href: https://docs.python.org/3/builtins/stdtypes.html#str.isascii name: isascii uid: str.isascii - fullName: str.isdecimal - href: https://docs.python.org/3/library/stdtypes.html#str.isdecimal + href: https://docs.python.org/3/builtins/stdtypes.html#str.isdecimal name: isdecimal uid: str.isdecimal - fullName: str.isdigit - href: https://docs.python.org/3/library/stdtypes.html#str.isdigit + href: https://docs.python.org/3/builtins/stdtypes.html#str.isdigit name: isdigit uid: str.isdigit - fullName: str.isidentifier - href: https://docs.python.org/3/library/stdtypes.html#str.isidentifier + href: https://docs.python.org/3/builtins/stdtypes.html#str.isidentifier name: isidentifier uid: str.isidentifier - fullName: str.islower - href: https://docs.python.org/3/library/stdtypes.html#str.islower + href: https://docs.python.org/3/builtins/stdtypes.html#str.islower name: islower uid: str.islower - fullName: str.isnumeric - href: https://docs.python.org/3/library/stdtypes.html#str.isnumeric + href: https://docs.python.org/3/builtins/stdtypes.html#str.isnumeric name: isnumeric uid: str.isnumeric - fullName: str.isprintable - href: https://docs.python.org/3/library/stdtypes.html#str.isprintable + href: https://docs.python.org/3/builtins/stdtypes.html#str.isprintable name: isprintable uid: str.isprintable - fullName: str.isspace - href: https://docs.python.org/3/library/stdtypes.html#str.isspace + href: https://docs.python.org/3/builtins/stdtypes.html#str.isspace name: isspace uid: str.isspace - fullName: str.istitle - href: https://docs.python.org/3/library/stdtypes.html#str.istitle + href: https://docs.python.org/3/builtins/stdtypes.html#str.istitle name: istitle uid: str.istitle - fullName: str.isupper - href: https://docs.python.org/3/library/stdtypes.html#str.isupper + href: https://docs.python.org/3/builtins/stdtypes.html#str.isupper name: isupper uid: str.isupper - fullName: str.join - href: https://docs.python.org/3/library/stdtypes.html#str.join + href: https://docs.python.org/3/builtins/stdtypes.html#str.join name: join uid: str.join - fullName: str.ljust - href: https://docs.python.org/3/library/stdtypes.html#str.ljust + href: https://docs.python.org/3/builtins/stdtypes.html#str.ljust name: ljust uid: str.ljust - fullName: str.lower - href: https://docs.python.org/3/library/stdtypes.html#str.lower + href: https://docs.python.org/3/builtins/stdtypes.html#str.lower name: lower uid: str.lower - fullName: str.lstrip - href: https://docs.python.org/3/library/stdtypes.html#str.lstrip + href: https://docs.python.org/3/builtins/stdtypes.html#str.lstrip name: lstrip uid: str.lstrip - fullName: str.maketrans - href: https://docs.python.org/3/library/stdtypes.html#str.maketrans + href: https://docs.python.org/3/builtins/stdtypes.html#str.maketrans name: maketrans uid: str.maketrans - fullName: str.partition - href: https://docs.python.org/3/library/stdtypes.html#str.partition + href: https://docs.python.org/3/builtins/stdtypes.html#str.partition name: partition uid: str.partition - fullName: str.removeprefix - href: https://docs.python.org/3/library/stdtypes.html#str.removeprefix + href: https://docs.python.org/3/builtins/stdtypes.html#str.removeprefix name: removeprefix uid: str.removeprefix - fullName: str.removesuffix - href: https://docs.python.org/3/library/stdtypes.html#str.removesuffix + href: https://docs.python.org/3/builtins/stdtypes.html#str.removesuffix name: removesuffix uid: str.removesuffix - fullName: str.replace - href: https://docs.python.org/3/library/stdtypes.html#str.replace + href: https://docs.python.org/3/builtins/stdtypes.html#str.replace name: replace uid: str.replace - fullName: str.rfind - href: https://docs.python.org/3/library/stdtypes.html#str.rfind + href: https://docs.python.org/3/builtins/stdtypes.html#str.rfind name: rfind uid: str.rfind - fullName: str.rindex - href: https://docs.python.org/3/library/stdtypes.html#str.rindex + href: https://docs.python.org/3/builtins/stdtypes.html#str.rindex name: rindex uid: str.rindex - fullName: str.rjust - href: https://docs.python.org/3/library/stdtypes.html#str.rjust + href: https://docs.python.org/3/builtins/stdtypes.html#str.rjust name: rjust uid: str.rjust - fullName: str.rpartition - href: https://docs.python.org/3/library/stdtypes.html#str.rpartition + href: https://docs.python.org/3/builtins/stdtypes.html#str.rpartition name: rpartition uid: str.rpartition - fullName: str.rsplit - href: https://docs.python.org/3/library/stdtypes.html#str.rsplit + href: https://docs.python.org/3/builtins/stdtypes.html#str.rsplit name: rsplit uid: str.rsplit - fullName: str.rstrip - href: https://docs.python.org/3/library/stdtypes.html#str.rstrip + href: https://docs.python.org/3/builtins/stdtypes.html#str.rstrip name: rstrip uid: str.rstrip - fullName: str.split - href: https://docs.python.org/3/library/stdtypes.html#str.split + href: https://docs.python.org/3/builtins/stdtypes.html#str.split name: split uid: str.split - fullName: str.splitlines - href: https://docs.python.org/3/library/stdtypes.html#str.splitlines + href: https://docs.python.org/3/builtins/stdtypes.html#str.splitlines name: splitlines uid: str.splitlines - fullName: str.startswith - href: https://docs.python.org/3/library/stdtypes.html#str.startswith + href: https://docs.python.org/3/builtins/stdtypes.html#str.startswith name: startswith uid: str.startswith - fullName: str.strip - href: https://docs.python.org/3/library/stdtypes.html#str.strip + href: https://docs.python.org/3/builtins/stdtypes.html#str.strip name: strip uid: str.strip - fullName: str.swapcase - href: https://docs.python.org/3/library/stdtypes.html#str.swapcase + href: https://docs.python.org/3/builtins/stdtypes.html#str.swapcase name: swapcase uid: str.swapcase - fullName: str.title - href: https://docs.python.org/3/library/stdtypes.html#str.title + href: https://docs.python.org/3/builtins/stdtypes.html#str.title name: title uid: str.title - fullName: str.translate - href: https://docs.python.org/3/library/stdtypes.html#str.translate + href: https://docs.python.org/3/builtins/stdtypes.html#str.translate name: translate uid: str.translate - fullName: str.upper - href: https://docs.python.org/3/library/stdtypes.html#str.upper + href: https://docs.python.org/3/builtins/stdtypes.html#str.upper name: upper uid: str.upper - fullName: str.zfill - href: https://docs.python.org/3/library/stdtypes.html#str.zfill + href: https://docs.python.org/3/builtins/stdtypes.html#str.zfill name: zfill uid: str.zfill - fullName: string.Formatter.check_unused_args @@ -19884,11 +19884,11 @@ references: name: format uid: tracemalloc.Traceback.format - fullName: tuple.count - href: https://docs.python.org/3/library/stdtypes.html#tuple.count + href: https://docs.python.org/3/builtins/stdtypes.html#tuple.count name: count uid: tuple.count - fullName: tuple.index - href: https://docs.python.org/3/library/stdtypes.html#tuple.index + href: https://docs.python.org/3/builtins/stdtypes.html#tuple.index name: index uid: tuple.index - fullName: turtle.Shape.addcomponent @@ -22088,27 +22088,27 @@ references: name: no_cache uid: zoneinfo.ZoneInfo.no_cache - fullName: Ellipsis - href: https://docs.python.org/3/library/constants.html#Ellipsis + href: https://docs.python.org/3/builtins/constants.html#Ellipsis name: Ellipsis uid: Ellipsis - fullName: 'False' - href: https://docs.python.org/3/library/constants.html#False + href: https://docs.python.org/3/builtins/constants.html#False name: 'False' uid: 'False' - fullName: None - href: https://docs.python.org/3/library/constants.html#None + href: https://docs.python.org/3/builtins/constants.html#None name: None uid: None - fullName: NotImplemented - href: https://docs.python.org/3/library/constants.html#NotImplemented + href: https://docs.python.org/3/builtins/constants.html#NotImplemented name: NotImplemented uid: NotImplemented - fullName: 'True' - href: https://docs.python.org/3/library/constants.html#True + href: https://docs.python.org/3/builtins/constants.html#True name: 'True' uid: 'True' - fullName: __debug__ - href: https://docs.python.org/3/library/constants.html#debug__ + href: https://docs.python.org/3/builtins/constants.html#debug__ name: __debug__ uid: __debug__ - fullName: __future__.absolute_import @@ -22376,11 +22376,11 @@ references: name: UNNAMED_SECTION uid: configparser.UNNAMED_SECTION - fullName: copyright - href: https://docs.python.org/3/library/constants.html#copyright + href: https://docs.python.org/3/builtins/constants.html#copyright name: copyright uid: copyright - fullName: credits - href: https://docs.python.org/3/library/constants.html#credits + href: https://docs.python.org/3/builtins/constants.html#credits name: credits uid: credits - fullName: csv.QUOTE_ALL @@ -24264,7 +24264,7 @@ references: name: errorcode uid: errno.errorcode - fullName: exit - href: https://docs.python.org/3/library/constants.html#exit + href: https://docs.python.org/3/builtins/constants.html#exit name: exit uid: exit - fullName: fcntl.LOCK_EX @@ -24480,7 +24480,7 @@ references: name: softkwlist uid: keyword.softkwlist - fullName: license - href: https://docs.python.org/3/library/constants.html#license + href: https://docs.python.org/3/builtins/constants.html#license name: license uid: license - fullName: locale.ABDAY_1 @@ -26012,7 +26012,7 @@ references: name: environ uid: posix.environ - fullName: quit - href: https://docs.python.org/3/library/constants.html#quit + href: https://docs.python.org/3/builtins/constants.html#quit name: quit uid: quit - fullName: re.A @@ -31844,15 +31844,15 @@ references: name: Breakpoint uid: bdb.Breakpoint - fullName: bool - href: https://docs.python.org/3/library/functions.html#bool + href: https://docs.python.org/3/builtins/functions.html#bool name: bool uid: bool - fullName: bytearray - href: https://docs.python.org/3/library/stdtypes.html#bytearray + href: https://docs.python.org/3/builtins/stdtypes.html#bytearray name: bytearray uid: bytearray - fullName: bytes - href: https://docs.python.org/3/library/stdtypes.html#bytes + href: https://docs.python.org/3/builtins/stdtypes.html#bytes name: bytes uid: bytes - fullName: bz2.BZ2Compressor @@ -32084,7 +32084,7 @@ references: name: deque uid: collections.deque - fullName: complex - href: https://docs.python.org/3/library/functions.html#complex + href: https://docs.python.org/3/builtins/functions.html#complex name: complex uid: complex - fullName: compression.zstd.CompressionParameter @@ -32528,7 +32528,7 @@ references: name: Underflow uid: decimal.Underflow - fullName: dict - href: https://docs.python.org/3/library/stdtypes.html#dict + href: https://docs.python.org/3/builtins/stdtypes.html#dict name: dict uid: dict - fullName: difflib.Differ @@ -32796,7 +32796,7 @@ references: name: FileInput uid: fileinput.FileInput - fullName: float - href: https://docs.python.org/3/library/functions.html#float + href: https://docs.python.org/3/builtins/functions.html#float name: float uid: float - fullName: fractions.Fraction @@ -32804,7 +32804,7 @@ references: name: Fraction uid: fractions.Fraction - fullName: frozenset - href: https://docs.python.org/3/library/stdtypes.html#frozenset + href: https://docs.python.org/3/builtins/stdtypes.html#frozenset name: frozenset uid: frozenset - fullName: ftplib.FTP @@ -33092,7 +33092,7 @@ references: name: Traceback uid: inspect.Traceback - fullName: int - href: https://docs.python.org/3/library/functions.html#int + href: https://docs.python.org/3/builtins/functions.html#int name: int uid: int - fullName: io.BufferedIOBase @@ -33188,7 +33188,7 @@ references: name: JSONEncoder uid: json.JSONEncoder - fullName: list - href: https://docs.python.org/3/library/stdtypes.html#list + href: https://docs.python.org/3/builtins/stdtypes.html#list name: list uid: list - fullName: logging.BufferingFormatter @@ -33348,7 +33348,7 @@ references: name: mboxMessage uid: mailbox.mboxMessage - fullName: memoryview - href: https://docs.python.org/3/library/stdtypes.html#memoryview + href: https://docs.python.org/3/builtins/stdtypes.html#memoryview name: memoryview uid: memoryview - fullName: mimetypes.MimeTypes @@ -33480,7 +33480,7 @@ references: name: Real uid: numbers.Real - fullName: object - href: https://docs.python.org/3/library/functions.html#object + href: https://docs.python.org/3/builtins/functions.html#object name: object uid: object - fullName: optparse.Option @@ -33596,7 +33596,7 @@ references: name: Profile uid: profile.Profile - fullName: property - href: https://docs.python.org/3/library/functions.html#property + href: https://docs.python.org/3/builtins/functions.html#property name: property uid: property - fullName: pstats.Stats @@ -33640,7 +33640,7 @@ references: name: SystemRandom uid: random.SystemRandom - fullName: range - href: https://docs.python.org/3/library/stdtypes.html#range + href: https://docs.python.org/3/builtins/stdtypes.html#range name: range uid: range - fullName: re.Match @@ -33704,7 +33704,7 @@ references: name: SelectorKey uid: selectors.SelectorKey - fullName: set - href: https://docs.python.org/3/library/stdtypes.html#set + href: https://docs.python.org/3/builtins/stdtypes.html#set name: set uid: set - fullName: shelve.BsdDbShelf @@ -33736,7 +33736,7 @@ references: name: Signals uid: signal.Signals - fullName: slice - href: https://docs.python.org/3/library/functions.html#slice + href: https://docs.python.org/3/builtins/functions.html#slice name: slice uid: slice - fullName: smtplib.LMTP @@ -33900,7 +33900,7 @@ references: name: NormalDist uid: statistics.NormalDist - fullName: str - href: https://docs.python.org/3/library/stdtypes.html#str + href: https://docs.python.org/3/builtins/stdtypes.html#str name: str uid: str - fullName: string.Formatter @@ -33936,7 +33936,7 @@ references: name: STARTUPINFO uid: subprocess.STARTUPINFO - fullName: super - href: https://docs.python.org/3/library/functions.html#super + href: https://docs.python.org/3/builtins/functions.html#super name: super uid: super - fullName: symtable.Class @@ -34432,7 +34432,7 @@ references: name: Traceback uid: tracemalloc.Traceback - fullName: tuple - href: https://docs.python.org/3/library/stdtypes.html#tuple + href: https://docs.python.org/3/builtins/stdtypes.html#tuple name: tuple uid: tuple - fullName: turtle.RawPen @@ -34468,7 +34468,7 @@ references: name: Vec2D uid: turtle.Vec2D - fullName: type - href: https://docs.python.org/3/library/functions.html#type + href: https://docs.python.org/3/builtins/functions.html#type name: type uid: type - fullName: types.AsyncGeneratorType @@ -35360,7 +35360,7 @@ references: name: ZoneInfo uid: zoneinfo.ZoneInfo - fullName: __import__ - href: https://docs.python.org/3/library/functions.html#import__ + href: https://docs.python.org/3/builtins/functions.html#import__ name: __import__ uid: __import__ - fullName: _thread.allocate_lock @@ -35416,19 +35416,19 @@ references: name: update_abstractmethods uid: abc.update_abstractmethods - fullName: abs - href: https://docs.python.org/3/library/functions.html#abs + href: https://docs.python.org/3/builtins/functions.html#abs name: abs uid: abs - fullName: aiter - href: https://docs.python.org/3/library/functions.html#aiter + href: https://docs.python.org/3/builtins/functions.html#aiter name: aiter uid: aiter - fullName: all - href: https://docs.python.org/3/library/functions.html#all + href: https://docs.python.org/3/builtins/functions.html#all name: all uid: all - fullName: anext - href: https://docs.python.org/3/library/functions.html#anext + href: https://docs.python.org/3/builtins/functions.html#anext name: anext uid: anext - fullName: annotationlib.annotations_to_string @@ -35456,11 +35456,11 @@ references: name: type_repr uid: annotationlib.type_repr - fullName: any - href: https://docs.python.org/3/library/functions.html#any + href: https://docs.python.org/3/builtins/functions.html#any name: any uid: any - fullName: ascii - href: https://docs.python.org/3/library/functions.html#ascii + href: https://docs.python.org/3/builtins/functions.html#ascii name: ascii uid: ascii - fullName: ast.compare @@ -35788,7 +35788,7 @@ references: name: set_trace uid: bdb.set_trace - fullName: bin - href: https://docs.python.org/3/library/functions.html#bin + href: https://docs.python.org/3/builtins/functions.html#bin name: bin uid: bin - fullName: binascii.a2b_base64 @@ -35864,7 +35864,7 @@ references: name: insort_right uid: bisect.insort_right - fullName: breakpoint - href: https://docs.python.org/3/library/functions.html#breakpoint + href: https://docs.python.org/3/builtins/functions.html#breakpoint name: breakpoint uid: breakpoint - fullName: bz2.compress @@ -35932,15 +35932,15 @@ references: name: weekheader uid: calendar.weekheader - fullName: callable - href: https://docs.python.org/3/library/functions.html#callable + href: https://docs.python.org/3/builtins/functions.html#callable name: callable uid: callable - fullName: chr - href: https://docs.python.org/3/library/functions.html#chr + href: https://docs.python.org/3/builtins/functions.html#chr name: chr uid: chr - fullName: classmethod - href: https://docs.python.org/3/library/functions.html#classmethod + href: https://docs.python.org/3/builtins/functions.html#classmethod name: classmethod uid: classmethod - fullName: cmath.acos @@ -36184,7 +36184,7 @@ references: name: yiq_to_rgb uid: colorsys.yiq_to_rgb - fullName: compile - href: https://docs.python.org/3/library/functions.html#compile + href: https://docs.python.org/3/builtins/functions.html#compile name: compile uid: compile - fullName: compileall.compile_dir @@ -36964,7 +36964,7 @@ references: name: setcontext uid: decimal.setcontext - fullName: delattr - href: https://docs.python.org/3/library/functions.html#delattr + href: https://docs.python.org/3/builtins/functions.html#delattr name: delattr uid: delattr - fullName: difflib.IS_CHARACTER_JUNK @@ -37000,7 +37000,7 @@ references: name: unified_diff uid: difflib.unified_diff - fullName: dir - href: https://docs.python.org/3/library/functions.html#dir + href: https://docs.python.org/3/builtins/functions.html#dir name: dir uid: dir - fullName: dis.code_info @@ -37044,7 +37044,7 @@ references: name: stack_effect uid: dis.stack_effect - fullName: divmod - href: https://docs.python.org/3/library/functions.html#divmod + href: https://docs.python.org/3/builtins/functions.html#divmod name: divmod uid: divmod - fullName: doctest.DocFileSuite @@ -37288,15 +37288,15 @@ references: name: verify uid: enum.verify - fullName: enumerate - href: https://docs.python.org/3/library/functions.html#enumerate + href: https://docs.python.org/3/builtins/functions.html#enumerate name: enumerate uid: enumerate - fullName: eval - href: https://docs.python.org/3/library/functions.html#eval + href: https://docs.python.org/3/builtins/functions.html#eval name: eval uid: eval - fullName: exec - href: https://docs.python.org/3/library/functions.html#exec + href: https://docs.python.org/3/builtins/functions.html#exec name: exec uid: exec - fullName: faulthandler.cancel_dump_traceback_later @@ -37408,7 +37408,7 @@ references: name: nextfile uid: fileinput.nextfile - fullName: filter - href: https://docs.python.org/3/library/functions.html#filter + href: https://docs.python.org/3/builtins/functions.html#filter name: filter uid: filter - fullName: fnmatch.filter @@ -37432,7 +37432,7 @@ references: name: translate uid: fnmatch.translate - fullName: format - href: https://docs.python.org/3/library/functions.html#format + href: https://docs.python.org/3/builtins/functions.html#format name: format uid: format - fullName: functools.cache @@ -37548,7 +37548,7 @@ references: name: unfreeze uid: gc.unfreeze - fullName: getattr - href: https://docs.python.org/3/library/functions.html#getattr + href: https://docs.python.org/3/builtins/functions.html#getattr name: getattr uid: getattr - fullName: getopt.getopt @@ -37636,7 +37636,7 @@ references: name: translate uid: glob.translate - fullName: globals - href: https://docs.python.org/3/library/functions.html#globals + href: https://docs.python.org/3/builtins/functions.html#globals name: globals uid: globals - fullName: grp.getgrall @@ -37664,11 +37664,11 @@ references: name: open uid: gzip.open - fullName: hasattr - href: https://docs.python.org/3/library/functions.html#hasattr + href: https://docs.python.org/3/builtins/functions.html#hasattr name: hasattr uid: hasattr - fullName: hash - href: https://docs.python.org/3/library/functions.html#hash + href: https://docs.python.org/3/builtins/functions.html#hash name: hash uid: hash - fullName: hashlib.blake2b @@ -37796,11 +37796,11 @@ references: name: nsmallest uid: heapq.nsmallest - fullName: help - href: https://docs.python.org/3/library/functions.html#help + href: https://docs.python.org/3/builtins/functions.html#help name: help uid: help - fullName: hex - href: https://docs.python.org/3/library/functions.html#hex + href: https://docs.python.org/3/builtins/functions.html#hex name: hex uid: hex - fullName: hmac.compare_digest @@ -37828,7 +37828,7 @@ references: name: parse_headers uid: http.client.parse_headers - fullName: id - href: https://docs.python.org/3/library/functions.html#id + href: https://docs.python.org/3/builtins/functions.html#id name: id uid: id - fullName: imaplib.Int2AP @@ -37972,7 +37972,7 @@ references: name: spec_from_loader uid: importlib.util.spec_from_loader - fullName: input - href: https://docs.python.org/3/library/functions.html#input + href: https://docs.python.org/3/builtins/functions.html#input name: input uid: input - fullName: inspect.cleandoc @@ -38252,15 +38252,15 @@ references: name: v6_int_to_packed uid: ipaddress.v6_int_to_packed - fullName: isinstance - href: https://docs.python.org/3/library/functions.html#isinstance + href: https://docs.python.org/3/builtins/functions.html#isinstance name: isinstance uid: isinstance - fullName: issubclass - href: https://docs.python.org/3/library/functions.html#issubclass + href: https://docs.python.org/3/builtins/functions.html#issubclass name: issubclass uid: issubclass - fullName: iter - href: https://docs.python.org/3/library/functions.html#iter + href: https://docs.python.org/3/builtins/functions.html#iter name: iter uid: iter - fullName: itertools.accumulate @@ -38368,7 +38368,7 @@ references: name: issoftkeyword uid: keyword.issoftkeyword - fullName: len - href: https://docs.python.org/3/library/functions.html#len + href: https://docs.python.org/3/builtins/functions.html#len name: len uid: len - fullName: linecache.checkcache @@ -38480,7 +38480,7 @@ references: name: textdomain uid: locale.textdomain - fullName: locals - href: https://docs.python.org/3/library/functions.html#locals + href: https://docs.python.org/3/builtins/functions.html#locals name: locals uid: locals - fullName: logging.addLevelName @@ -38604,7 +38604,7 @@ references: name: open uid: lzma.open - fullName: map - href: https://docs.python.org/3/library/functions.html#map + href: https://docs.python.org/3/builtins/functions.html#map name: map uid: map - fullName: marshal.dump @@ -38852,7 +38852,7 @@ references: name: ulp uid: math.ulp - fullName: max - href: https://docs.python.org/3/library/functions.html#max + href: https://docs.python.org/3/builtins/functions.html#max name: max uid: max - fullName: mimetypes.add_type @@ -38884,7 +38884,7 @@ references: name: read_mime_types uid: mimetypes.read_mime_types - fullName: min - href: https://docs.python.org/3/library/functions.html#min + href: https://docs.python.org/3/builtins/functions.html#min name: min uid: min - fullName: modulefinder.AddPackagePath @@ -39072,15 +39072,15 @@ references: name: synchronized uid: multiprocessing.sharedctypes.synchronized - fullName: next - href: https://docs.python.org/3/library/functions.html#next + href: https://docs.python.org/3/builtins/functions.html#next name: next uid: next - fullName: oct - href: https://docs.python.org/3/library/functions.html#oct + href: https://docs.python.org/3/builtins/functions.html#oct name: oct uid: oct - fullName: open - href: https://docs.python.org/3/library/functions.html#open + href: https://docs.python.org/3/builtins/functions.html#open name: open uid: open - fullName: operator.__abs__ @@ -39496,7 +39496,7 @@ references: name: xor uid: operator.xor - fullName: ord - href: https://docs.python.org/3/library/functions.html#ord + href: https://docs.python.org/3/builtins/functions.html#ord name: ord uid: ord - fullName: os.WCOREDUMP @@ -40704,7 +40704,7 @@ references: name: loads uid: plistlib.loads - fullName: pow - href: https://docs.python.org/3/library/functions.html#pow + href: https://docs.python.org/3/builtins/functions.html#pow name: pow uid: pow - fullName: pprint.isreadable @@ -40732,7 +40732,7 @@ references: name: saferepr uid: pprint.saferepr - fullName: print - href: https://docs.python.org/3/library/functions.html#print + href: https://docs.python.org/3/builtins/functions.html#print name: print uid: print - fullName: profile.run @@ -40744,15 +40744,15 @@ references: name: runctx uid: profile.runctx - fullName: property.deleter - href: https://docs.python.org/3/library/functions.html#property.deleter + href: https://docs.python.org/3/builtins/functions.html#property.deleter name: deleter uid: property.deleter - fullName: property.getter - href: https://docs.python.org/3/library/functions.html#property.getter + href: https://docs.python.org/3/builtins/functions.html#property.getter name: getter uid: property.getter - fullName: property.setter - href: https://docs.python.org/3/library/functions.html#property.setter + href: https://docs.python.org/3/builtins/functions.html#property.setter name: setter uid: property.setter - fullName: pty.fork @@ -41056,7 +41056,7 @@ references: name: write_history_file uid: readline.write_history_file - fullName: repr - href: https://docs.python.org/3/library/functions.html#repr + href: https://docs.python.org/3/builtins/functions.html#repr name: repr uid: repr - fullName: reprlib.recursive_repr @@ -41088,11 +41088,11 @@ references: name: setrlimit uid: resource.setrlimit - fullName: reversed - href: https://docs.python.org/3/library/functions.html#reversed + href: https://docs.python.org/3/builtins/functions.html#reversed name: reversed uid: reversed - fullName: round - href: https://docs.python.org/3/library/functions.html#round + href: https://docs.python.org/3/builtins/functions.html#round name: round uid: round - fullName: runpy.run_module @@ -41156,7 +41156,7 @@ references: name: select uid: select.select - fullName: setattr - href: https://docs.python.org/3/library/functions.html#setattr + href: https://docs.python.org/3/builtins/functions.html#setattr name: setattr uid: setattr - fullName: shelve.open @@ -41496,7 +41496,7 @@ references: name: socketpair uid: socket.socketpair - fullName: sorted - href: https://docs.python.org/3/library/functions.html#sorted + href: https://docs.python.org/3/builtins/functions.html#sorted name: sorted uid: sorted - fullName: sqlite3.complete_statement @@ -41616,7 +41616,7 @@ references: name: filemode uid: stat.filemode - fullName: staticmethod - href: https://docs.python.org/3/library/functions.html#staticmethod + href: https://docs.python.org/3/builtins/functions.html#staticmethod name: staticmethod uid: staticmethod - fullName: statistics.correlation @@ -41832,7 +41832,7 @@ references: name: run uid: subprocess.run - fullName: sum - href: https://docs.python.org/3/library/functions.html#sum + href: https://docs.python.org/3/builtins/functions.html#sum name: sum uid: sum - fullName: symtable.symtable @@ -44080,7 +44080,7 @@ references: name: uuid8 uid: uuid.uuid8 - fullName: vars - href: https://docs.python.org/3/library/functions.html#vars + href: https://docs.python.org/3/builtins/functions.html#vars name: vars uid: vars - fullName: venv.create @@ -44440,7 +44440,7 @@ references: name: loads uid: xmlrpc.client.loads - fullName: zip - href: https://docs.python.org/3/library/functions.html#zip + href: https://docs.python.org/3/builtins/functions.html#zip name: zip uid: zip - fullName: zipapp.create_archive