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/12] 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/12] 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/12] 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/12] 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/12] 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/12] 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/12] 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/12] 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/12] 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/12] 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/12] 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/12] 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