From 57c8173e02b9ee16e24f0b19b44e84da07672618 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Thu, 13 Mar 2025 05:07:41 +0000 Subject: [PATCH 1/9] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=510570&view=results --- .../msal.application.ClientApplication.yml | 20 +++++++++++-------- ...lication.ConfidentialClientApplication.yml | 17 ++++++++-------- ...al.application.PublicClientApplication.yml | 8 +++++++- ...managed_identity.ManagedIdentityClient.yml | 18 ++++++++--------- python/docs-ref-autogen/msal/msal.sku.yml | 5 +++++ .../msal/msal.token_cache.TokenCache.yml | 10 ++++++++-- python/docs-ref-autogen/msal/msal.yml | 1 + python/docs-ref-autogen/toc.yml | 2 ++ 8 files changed, 53 insertions(+), 28 deletions(-) create mode 100644 python/docs-ref-autogen/msal/msal.sku.yml diff --git a/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml b/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml index 3517dc6..a9f3198 100644 --- a/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml +++ b/python/docs-ref-autogen/msal/msal.application.ClientApplication.yml @@ -231,14 +231,15 @@ constructor: - name: azure_region description: "(optional)\nInstructs MSAL to use the Entra regional token service.\ \ This legacy feature is only available to\nfirst-party applications. Only `acquire_token_for_client()`\ - \ is supported.\n\nSupports 3 values:\n\n `azure_region=None` - meaning no\ - \ region is used. This is the default value.\n `azure_region=\"some_region\"\ - ` - meaning the specified region is used.\n `azure_region=True` - meaning\ - \ MSAL will try to auto-detect the region. This is not recommended.\n\n\n> [!NOTE]\n\ - > Region auto-discovery has been tested on VMs and on Azure Functions. It is\ - \ unreliable.\n>\n> Applications using this option should configure a short\ - \ timeout.\n>\n> \n>\n> For more details and for the values of the region string\n\ - >\n> \n>\n> see [https://learn.microsoft.com/entra/msal/dotnet/resources/region-discovery-troubleshooting](https://learn.microsoft.com/entra/msal/dotnet/resources/region-discovery-troubleshooting)\n\ + \ is supported.\n\nSupports 4 values:\n\n1. `azure_region=None` - This default\ + \ value means no region is configured. MSAL will use the region defined in env\ + \ var `MSAL_FORCE_REGION`. \n\n2. `azure_region=\"some_region\"` - meaning the\ + \ specified region is used. \n\n3. `azure_region=True` - meaning MSAL will try\ + \ to auto-detect the region. This is not recommended. \n\n4. `azure_region=False`\ + \ - meaning MSAL will use no region. \n\n\n> [!NOTE]\n> Region auto-discovery\ + \ has been tested on VMs and on Azure Functions. It is unreliable.\n>\n> Applications\ + \ using this option should configure a short timeout.\n>\n> \n>\n> For more\ + \ details and for the values of the region string\n>\n> \n>\n> see [https://learn.microsoft.com/entra/msal/dotnet/resources/region-discovery-troubleshooting](https://learn.microsoft.com/entra/msal/dotnet/resources/region-discovery-troubleshooting)\n\ >\n\nNew in version 1.12.0." defaultValue: None types: @@ -958,6 +959,9 @@ attributes: - uid: msal.application.ClientApplication.ATTEMPT_REGION_DISCOVERY name: ATTEMPT_REGION_DISCOVERY signature: ATTEMPT_REGION_DISCOVERY = True +- uid: msal.application.ClientApplication.DISABLE_MSAL_FORCE_REGION + name: DISABLE_MSAL_FORCE_REGION + signature: DISABLE_MSAL_FORCE_REGION = False - uid: msal.application.ClientApplication.GET_ACCOUNTS_ID name: GET_ACCOUNTS_ID signature: GET_ACCOUNTS_ID = '902' diff --git a/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml b/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml index be573e3..5372405 100644 --- a/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml +++ b/python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml @@ -231,14 +231,15 @@ constructor: - name: azure_region description: "(optional)\nInstructs MSAL to use the Entra regional token service.\ \ This legacy feature is only available to\nfirst-party applications. Only `acquire_token_for_client()`\ - \ is supported.\n\nSupports 3 values:\n\n `azure_region=None` - meaning no\ - \ region is used. This is the default value.\n `azure_region=\"some_region\"\ - ` - meaning the specified region is used.\n `azure_region=True` - meaning\ - \ MSAL will try to auto-detect the region. This is not recommended.\n\n\n> [!NOTE]\n\ - > Region auto-discovery has been tested on VMs and on Azure Functions. It is\ - \ unreliable.\n>\n> Applications using this option should configure a short\ - \ timeout.\n>\n> \n>\n> For more details and for the values of the region string\n\ - >\n> \n>\n> see [https://learn.microsoft.com/entra/msal/dotnet/resources/region-discovery-troubleshooting](https://learn.microsoft.com/entra/msal/dotnet/resources/region-discovery-troubleshooting)\n\ + \ is supported.\n\nSupports 4 values:\n\n1. `azure_region=None` - This default\ + \ value means no region is configured. MSAL will use the region defined in env\ + \ var `MSAL_FORCE_REGION`. \n\n2. `azure_region=\"some_region\"` - meaning the\ + \ specified region is used. \n\n3. `azure_region=True` - meaning MSAL will try\ + \ to auto-detect the region. This is not recommended. \n\n4. `azure_region=False`\ + \ - meaning MSAL will use no region. \n\n\n> [!NOTE]\n> Region auto-discovery\ + \ has been tested on VMs and on Azure Functions. It is unreliable.\n>\n> Applications\ + \ using this option should configure a short timeout.\n>\n> \n>\n> For more\ + \ details and for the values of the region string\n>\n> \n>\n> see [https://learn.microsoft.com/entra/msal/dotnet/resources/region-discovery-troubleshooting](https://learn.microsoft.com/entra/msal/dotnet/resources/region-discovery-troubleshooting)\n\ >\n\nNew in version 1.12.0." defaultValue: None types: diff --git a/python/docs-ref-autogen/msal/msal.application.PublicClientApplication.yml b/python/docs-ref-autogen/msal/msal.application.PublicClientApplication.yml index 9437b49..6f91e65 100644 --- a/python/docs-ref-autogen/msal/msal.application.PublicClientApplication.yml +++ b/python/docs-ref-autogen/msal/msal.application.PublicClientApplication.yml @@ -40,7 +40,8 @@ summary: "Same as ,\nexcept that `client_creden \ when broker is opted in, installed, initialized,\n>\n> but subsequent token request(s)\ \ failed.\n>" constructor: - syntax: PublicClientApplication(client_id, client_credential=None, **kwargs) + syntax: PublicClientApplication(client_id, client_credential=None, *, enable_broker_on_windows=None, + enable_broker_on_mac=None, **kwargs) parameters: - name: enable_broker_on_windows description: 'This setting is only effective if your app is running on Windows @@ -67,6 +68,11 @@ constructor: isRequired: true - name: client_credential defaultValue: None + keywordOnlyParameters: + - name: enable_broker_on_windows + isRequired: true + - name: enable_broker_on_mac + isRequired: true methods: - uid: msal.application.PublicClientApplication.acquire_token_by_device_flow name: acquire_token_by_device_flow diff --git a/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml b/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml index 2e3f09c..3279f10 100644 --- a/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml +++ b/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml @@ -22,15 +22,15 @@ summary: "This API encapsulates multiple managed identity back-ends:\nVM, App Se Recipe 2: Write once, run everywhere.\nIf you use different managed identity on\ \ different deployment,\nyou may use an environment variable (such as MY_MANAGED_IDENTITY_CONFIG)\n\ to store a json blob like\n`{\"ManagedIdentityIdType\": \"ClientId\", \"Id\": \"\ - foo\"}` or\n`{\"ManagedIdentityIdType\": \"SystemAssignedManagedIdentity\", \"Id\"\ - : null})`.\nThe following app can load managed identity configuration dynamically:\n\ - \n\n\n````default\n\n import json, os,\ - \ msal, requests\n config = os.getenv(\"MY_MANAGED_IDENTITY_CONFIG\")\n assert\ - \ config, \"An ENV VAR with value should exist\"\n client = msal.ManagedIdentityClient(\n\ - \ json.loads(config),\n http_client=requests.Session(),\n )\n\ - \ token = client.acquire_token_for_client(\"resource\")\n ````" + foo\"}` or\n`{\"ManagedIdentityIdType\": \"SystemAssigned\", \"Id\": null}`.\nThe\ + \ following app can load managed identity configuration dynamically:\n\n\n\n````default\n\n import json, os, msal, requests\n\ + \ config = os.getenv(\"MY_MANAGED_IDENTITY_CONFIG\")\n assert config, \"An ENV\ + \ VAR with value should exist\"\n client = msal.ManagedIdentityClient(\n \ + \ json.loads(config),\n http_client=requests.Session(),\n )\n token\ + \ = client.acquire_token_for_client(\"resource\")\n ````" constructor: syntax: 'ManagedIdentityClient(managed_identity: dict | ManagedIdentity | SystemAssignedManagedIdentity | UserAssignedManagedIdentity, *, http_client, token_cache=None, http_cache=None)' diff --git a/python/docs-ref-autogen/msal/msal.sku.yml b/python/docs-ref-autogen/msal/msal.sku.yml new file mode 100644 index 0000000..4a18ffb --- /dev/null +++ b/python/docs-ref-autogen/msal/msal.sku.yml @@ -0,0 +1,5 @@ +### YamlMime:PythonModule +uid: msal.sku +name: sku +fullName: msal.sku +summary: This module is from where we recieve the client sku name and version. diff --git a/python/docs-ref-autogen/msal/msal.token_cache.TokenCache.yml b/python/docs-ref-autogen/msal/msal.token_cache.TokenCache.yml index a3dd720..c918af7 100644 --- a/python/docs-ref-autogen/msal/msal.token_cache.TokenCache.yml +++ b/python/docs-ref-autogen/msal/msal.token_cache.TokenCache.yml @@ -26,7 +26,7 @@ methods: - uid: msal.token_cache.TokenCache.find name: find summary: Equivalent to list(search(...)). - signature: find(credential_type, target=None, query=None) + signature: find(credential_type, target=None, query=None, *, now=None) parameters: - name: credential_type isRequired: true @@ -34,6 +34,9 @@ methods: defaultValue: None - name: query defaultValue: None + keywordOnlyParameters: + - name: now + isRequired: true - uid: msal.token_cache.TokenCache.modify name: modify signature: modify(credential_type, old_entry, new_key_value_pairs=None) @@ -76,7 +79,7 @@ methods: It is O(1) for AT hits, and O(n) for other types. Note that it holds a lock during the entire search.' - signature: search(credential_type, target=None, query=None) + signature: search(credential_type, target=None, query=None, *, now=None) parameters: - name: credential_type isRequired: true @@ -84,6 +87,9 @@ methods: defaultValue: None - name: query defaultValue: None + keywordOnlyParameters: + - name: now + isRequired: true - uid: msal.token_cache.TokenCache.update_rt name: update_rt signature: update_rt(rt_item, new_rt) diff --git a/python/docs-ref-autogen/msal/msal.yml b/python/docs-ref-autogen/msal/msal.yml index 7bed890..e0f6704 100644 --- a/python/docs-ref-autogen/msal/msal.yml +++ b/python/docs-ref-autogen/msal/msal.yml @@ -7,4 +7,5 @@ modules: - msal.application - msal.auth_scheme - msal.managed_identity +- msal.sku - msal.token_cache diff --git a/python/docs-ref-autogen/toc.yml b/python/docs-ref-autogen/toc.yml index ef1d824..afaec37 100644 --- a/python/docs-ref-autogen/toc.yml +++ b/python/docs-ref-autogen/toc.yml @@ -33,6 +33,8 @@ - name: UserAssignedManagedIdentity uid: msal.managed_identity.UserAssignedManagedIdentity name: managed_identity + - name: sku + uid: msal.sku - items: - name: Overview uid: msal.token_cache From 17fe1cb0de8fa6c4b2e3f83b73925ab3a42aff1b Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Sun, 16 Mar 2025 18:06:00 +0000 Subject: [PATCH 2/9] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=511462&view=results --- xrefmap.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index e3a68c6..cbdd54c 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -24995,6 +24995,10 @@ references: href: https://docs.python.org/3/library/winsound.html#winsound.SND_ALIAS name: SND_ALIAS uid: winsound.SND_ALIAS +- fullName: winsound.SND_APPLICATION + href: https://docs.python.org/3/library/winsound.html#winsound.SND_APPLICATION + name: SND_APPLICATION + uid: winsound.SND_APPLICATION - fullName: winsound.SND_ASYNC href: https://docs.python.org/3/library/winsound.html#winsound.SND_ASYNC name: SND_ASYNC From ffb6d2a3dd5777e3134128a0640fb3aa89022717 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Mon, 17 Mar 2025 18:07:56 +0000 Subject: [PATCH 3/9] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=511644&view=results --- xrefmap.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index cbdd54c..16e24a2 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -19751,6 +19751,10 @@ references: href: https://docs.python.org/3/library/dis.html#dis.Instruction.baseopname name: baseopname uid: dis.Instruction.baseopname +- fullName: dis.Instruction.cache_info + href: https://docs.python.org/3/library/dis.html#dis.Instruction.cache_info + name: cache_info + uid: dis.Instruction.cache_info - fullName: dis.Instruction.cache_offset href: https://docs.python.org/3/library/dis.html#dis.Instruction.cache_offset name: cache_offset From fe948b731e08f5970565841ba95bc23561cab186 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Sun, 23 Mar 2025 18:06:14 +0000 Subject: [PATCH 4/9] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=513843&view=results --- xrefmap.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index 16e24a2..f43d7d3 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -12647,6 +12647,10 @@ references: href: https://docs.python.org/3/library/mailbox.html#mailbox.MHMessage.set_sequences name: set_sequences uid: mailbox.MHMessage.set_sequences +- fullName: mailbox.MMDF.get_bytes + href: https://docs.python.org/3/library/mailbox.html#mailbox.MMDF.get_bytes + name: get_bytes + uid: mailbox.MMDF.get_bytes - fullName: mailbox.MMDF.get_file href: https://docs.python.org/3/library/mailbox.html#mailbox.MMDF.get_file name: get_file @@ -12911,10 +12915,18 @@ references: href: https://docs.python.org/3/library/mailbox.html#mailbox.MaildirMessage.set_subdir name: set_subdir uid: mailbox.MaildirMessage.set_subdir +- fullName: mailbox.mbox.get_bytes + href: https://docs.python.org/3/library/mailbox.html#mailbox.mbox.get_bytes + name: get_bytes + uid: mailbox.mbox.get_bytes - fullName: mailbox.mbox.get_file href: https://docs.python.org/3/library/mailbox.html#mailbox.mbox.get_file name: get_file uid: mailbox.mbox.get_file +- fullName: mailbox.mbox.get_string + href: https://docs.python.org/3/library/mailbox.html#mailbox.mbox.get_string + name: get_string + uid: mailbox.mbox.get_string - fullName: mailbox.mbox.lock href: https://docs.python.org/3/library/mailbox.html#mailbox.mbox.lock name: lock From e0ae809aef0fe1cfcca2c0f24baf8d30045dcda5 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Mon, 24 Mar 2025 18:08:02 +0000 Subject: [PATCH 5/9] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=514125&view=results --- xrefmap.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/xrefmap.yml b/xrefmap.yml index f43d7d3..b00f99b 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -24491,10 +24491,6 @@ references: href: https://docs.python.org/3/library/token.html#token.NOTEQUAL name: NOTEQUAL uid: token.NOTEQUAL -- fullName: token.NT_OFFSET - href: https://docs.python.org/3/library/token.html#token.NT_OFFSET - name: NT_OFFSET - uid: token.NT_OFFSET - fullName: token.NUMBER href: https://docs.python.org/3/library/token.html#token.NUMBER name: NUMBER From c9acef21d5be4d2339d1a59d9726d9d482493807 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Wed, 2 Apr 2025 18:07:18 +0000 Subject: [PATCH 6/9] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=516891&view=results --- .../msal/msal.application.PublicClientApplication.yml | 4 ++-- .../msal/msal.managed_identity.ManagedIdentityClient.yml | 6 +++--- .../msal.managed_identity.UserAssignedManagedIdentity.yml | 6 +++--- .../docs-ref-autogen/msal/msal.token_cache.TokenCache.yml | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/python/docs-ref-autogen/msal/msal.application.PublicClientApplication.yml b/python/docs-ref-autogen/msal/msal.application.PublicClientApplication.yml index 6f91e65..a443047 100644 --- a/python/docs-ref-autogen/msal/msal.application.PublicClientApplication.yml +++ b/python/docs-ref-autogen/msal/msal.application.PublicClientApplication.yml @@ -70,9 +70,9 @@ constructor: defaultValue: None keywordOnlyParameters: - name: enable_broker_on_windows - isRequired: true + defaultValue: None - name: enable_broker_on_mac - isRequired: true + defaultValue: None methods: - uid: msal.application.PublicClientApplication.acquire_token_by_device_flow name: acquire_token_by_device_flow diff --git a/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml b/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml index 3279f10..7ada9c0 100644 --- a/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml +++ b/python/docs-ref-autogen/msal/msal.managed_identity.ManagedIdentityClient.yml @@ -71,9 +71,9 @@ constructor: - name: http_client isRequired: true - name: token_cache - isRequired: true + defaultValue: None - name: http_cache - isRequired: true + defaultValue: None methods: - uid: msal.managed_identity.ManagedIdentityClient.acquire_token_for_client name: acquire_token_for_client @@ -115,4 +115,4 @@ methods: - name: resource isRequired: true - name: claims_challenge - isRequired: true + defaultValue: None diff --git a/python/docs-ref-autogen/msal/msal.managed_identity.UserAssignedManagedIdentity.yml b/python/docs-ref-autogen/msal/msal.managed_identity.UserAssignedManagedIdentity.yml index f722e30..8b1bcdc 100644 --- a/python/docs-ref-autogen/msal/msal.managed_identity.UserAssignedManagedIdentity.yml +++ b/python/docs-ref-autogen/msal/msal.managed_identity.UserAssignedManagedIdentity.yml @@ -14,8 +14,8 @@ constructor: syntax: UserAssignedManagedIdentity(*, client_id=None, resource_id=None, object_id=None) keywordOnlyParameters: - name: client_id - isRequired: true + defaultValue: None - name: resource_id - isRequired: true + defaultValue: None - name: object_id - isRequired: true + defaultValue: None diff --git a/python/docs-ref-autogen/msal/msal.token_cache.TokenCache.yml b/python/docs-ref-autogen/msal/msal.token_cache.TokenCache.yml index c918af7..85bf702 100644 --- a/python/docs-ref-autogen/msal/msal.token_cache.TokenCache.yml +++ b/python/docs-ref-autogen/msal/msal.token_cache.TokenCache.yml @@ -36,7 +36,7 @@ methods: defaultValue: None keywordOnlyParameters: - name: now - isRequired: true + defaultValue: None - uid: msal.token_cache.TokenCache.modify name: modify signature: modify(credential_type, old_entry, new_key_value_pairs=None) @@ -89,7 +89,7 @@ methods: defaultValue: None keywordOnlyParameters: - name: now - isRequired: true + defaultValue: None - uid: msal.token_cache.TokenCache.update_rt name: update_rt signature: update_rt(rt_item, new_rt) From 2dd40828d304e7f7156f6a8251c5e2d6d02c325e Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Sun, 6 Apr 2025 18:05:29 +0000 Subject: [PATCH 7/9] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=517943&view=results --- xrefmap.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index b00f99b..df28ae8 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -779,6 +779,10 @@ references: href: https://docs.python.org/3/library/pickle.html#pickle.UnpicklingError name: UnpicklingError uid: pickle.UnpicklingError +- fullName: plistlib.InvalidFileException + href: https://docs.python.org/3/library/plistlib.html#plistlib.InvalidFileException + name: InvalidFileException + uid: plistlib.InvalidFileException - fullName: poplib.error_proto href: https://docs.python.org/3/library/poplib.html#poplib.error_proto name: error_proto From 9b44715ef01072707378bf43c32fdce94f354a04 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Sun, 13 Apr 2025 18:06:30 +0000 Subject: [PATCH 8/9] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=520798&view=results --- xrefmap.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index df28ae8..effbc54 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -27811,6 +27811,10 @@ references: href: https://docs.python.org/3/library/dataclasses.html#dataclasses.Field name: Field uid: dataclasses.Field +- fullName: dataclasses.InitVar + href: https://docs.python.org/3/library/dataclasses.html#dataclasses.InitVar + name: InitVar + uid: dataclasses.InitVar - fullName: datetime.date href: https://docs.python.org/3/library/datetime.html#datetime.date name: date From ae4c815d06274395521d3ef0e7fb71fce68ea045 Mon Sep 17 00:00:00 2001 From: "docsreference@microsoft.com" Date: Mon, 14 Apr 2025 05:06:24 +0000 Subject: [PATCH 9/9] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=520866&view=results --- xrefmap.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xrefmap.yml b/xrefmap.yml index effbc54..ae175c7 100644 --- a/xrefmap.yml +++ b/xrefmap.yml @@ -4055,6 +4055,10 @@ references: href: https://docs.python.org/3/library/pickle.html#pickle.Pickler.fast name: fast uid: pickle.Pickler.fast +- fullName: plistlib.UID.data + href: https://docs.python.org/3/library/plistlib.html#plistlib.UID.data + name: data + uid: plistlib.UID.data - fullName: property.__name__ href: https://docs.python.org/3/library/functions.html#property.__name__ name: __name__