Skip to content

Commit 76eba7f

Browse files
CI Update
Build.Reason:Manual by Baizhong Jin (INFOSYS LIMITED) Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=548907&view=results
1 parent 098a812 commit 76eba7f

File tree

4 files changed

+104
-6
lines changed

4 files changed

+104
-6
lines changed

python/docs-ref-autogen/msal/msal.application.ClientApplication.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,8 @@ constructor:
276276
\ \"rb\") as f:\n persisted_http_cache = pickle.load(f) # Take a\
277277
\ snapshot\n except (\n FileNotFoundError, # Or IOError in Python\
278278
\ 2\n pickle.UnpicklingError, # A corrupted http cache file\n \
279-
\ ):\n persisted_http_cache = {} # Recover by starting afresh\n\
279+
\ AttributeError, # Cache created by a different version of MSAL\n \
280+
\ ):\n persisted_http_cache = {} # Recover by starting afresh\n\
280281
\ atexit.register(lambda: pickle.dump(\n # When exit, flush it back\
281282
\ to the file.\n # It may occasionally overwrite another process's concurrent\
282283
\ write,\n # but that is fine. Subsequent runs will reach eventual consistency.\n\

python/docs-ref-autogen/msal/msal.application.ConfidentialClientApplication.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,8 @@ constructor:
276276
\ \"rb\") as f:\n persisted_http_cache = pickle.load(f) # Take a\
277277
\ snapshot\n except (\n FileNotFoundError, # Or IOError in Python\
278278
\ 2\n pickle.UnpicklingError, # A corrupted http cache file\n \
279-
\ ):\n persisted_http_cache = {} # Recover by starting afresh\n\
279+
\ AttributeError, # Cache created by a different version of MSAL\n \
280+
\ ):\n persisted_http_cache = {} # Recover by starting afresh\n\
280281
\ atexit.register(lambda: pickle.dump(\n # When exit, flush it back\
281282
\ to the file.\n # It may occasionally overwrite another process's concurrent\
282283
\ write,\n # but that is fine. Subsequent runs will reach eventual consistency.\n\

python/docs-ref-autogen/toc.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,48 +5,88 @@
55
- name: Overview
66
uid: msal.application
77
- name: ClientApplication
8+
no-loc:
9+
- ClientApplication
810
uid: msal.application.ClientApplication
911
- name: ConfidentialClientApplication
12+
no-loc:
13+
- ConfidentialClientApplication
1014
uid: msal.application.ConfidentialClientApplication
1115
- name: PublicClientApplication
16+
no-loc:
17+
- PublicClientApplication
1218
uid: msal.application.PublicClientApplication
1319
name: application
20+
no-loc:
21+
- application
1422
- items:
1523
- name: Overview
1624
uid: msal.auth_scheme
1725
- name: PopAuthScheme
26+
no-loc:
27+
- PopAuthScheme
1828
uid: msal.auth_scheme.PopAuthScheme
1929
name: auth_scheme
30+
no-loc:
31+
- auth_scheme
2032
- items:
2133
- name: Overview
2234
uid: msal.managed_identity
2335
- name: ArcPlatformNotSupportedError
36+
no-loc:
37+
- ArcPlatformNotSupportedError
2438
uid: msal.managed_identity.ArcPlatformNotSupportedError
2539
- name: ManagedIdentity
40+
no-loc:
41+
- ManagedIdentity
2642
uid: msal.managed_identity.ManagedIdentity
2743
- name: ManagedIdentityClient
44+
no-loc:
45+
- ManagedIdentityClient
2846
uid: msal.managed_identity.ManagedIdentityClient
2947
- name: ManagedIdentityError
48+
no-loc:
49+
- ManagedIdentityError
3050
uid: msal.managed_identity.ManagedIdentityError
3151
- name: SystemAssignedManagedIdentity
52+
no-loc:
53+
- SystemAssignedManagedIdentity
3254
uid: msal.managed_identity.SystemAssignedManagedIdentity
3355
- name: UserAssignedManagedIdentity
56+
no-loc:
57+
- UserAssignedManagedIdentity
3458
uid: msal.managed_identity.UserAssignedManagedIdentity
3559
name: managed_identity
60+
no-loc:
61+
- managed_identity
3662
- name: sku
63+
no-loc:
64+
- sku
3765
uid: msal.sku
3866
- items:
3967
- name: Overview
4068
uid: msal.token_cache
4169
- name: SerializableTokenCache
70+
no-loc:
71+
- SerializableTokenCache
4272
uid: msal.token_cache.SerializableTokenCache
4373
- items:
4474
- name: Overview
4575
uid: msal.token_cache.TokenCache
4676
- name: AuthorityType
77+
no-loc:
78+
- AuthorityType
4779
uid: msal.token_cache.TokenCache.AuthorityType
4880
- name: CredentialType
81+
no-loc:
82+
- CredentialType
4983
uid: msal.token_cache.TokenCache.CredentialType
5084
name: TokenCache
85+
no-loc:
86+
- TokenCache
5187
name: token_cache
88+
no-loc:
89+
- token_cache
5290
name: msal
91+
no-loc:
92+
- msal

xrefmap.yml

Lines changed: 60 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -471,10 +471,6 @@ references:
471471
href: https://docs.python.org/3/library/doctest.html#doctest.UnexpectedException
472472
name: UnexpectedException
473473
uid: doctest.UnexpectedException
474-
- fullName: doctest.failureException
475-
href: https://docs.python.org/3/library/doctest.html#doctest.failureException
476-
name: failureException
477-
uid: doctest.failureException
478474
- fullName: email.errors.BoundaryError
479475
href: https://docs.python.org/3/library/email.errors.html#email.errors.BoundaryError
480476
name: BoundaryError
@@ -1003,6 +999,10 @@ references:
1003999
href: https://docs.python.org/3/library/tarfile.html#tarfile.HeaderError
10041000
name: HeaderError
10051001
uid: tarfile.HeaderError
1002+
- fullName: tarfile.LinkFallbackError
1003+
href: https://docs.python.org/3/library/tarfile.html#tarfile.LinkFallbackError
1004+
name: LinkFallbackError
1005+
uid: tarfile.LinkFallbackError
10061006
- fullName: tarfile.LinkOutsideDestinationError
10071007
href: https://docs.python.org/3/library/tarfile.html#tarfile.LinkOutsideDestinationError
10081008
name: LinkOutsideDestinationError
@@ -1975,6 +1975,38 @@ references:
19751975
href: https://docs.python.org/3/library/datetime.html#datetime.timezone.utc
19761976
name: utc
19771977
uid: datetime.timezone.utc
1978+
- fullName: decimal.Context.Emax
1979+
href: https://docs.python.org/3/library/decimal.html#decimal.Context.Emax
1980+
name: Emax
1981+
uid: decimal.Context.Emax
1982+
- fullName: decimal.Context.Emin
1983+
href: https://docs.python.org/3/library/decimal.html#decimal.Context.Emin
1984+
name: Emin
1985+
uid: decimal.Context.Emin
1986+
- fullName: decimal.Context.capitals
1987+
href: https://docs.python.org/3/library/decimal.html#decimal.Context.capitals
1988+
name: capitals
1989+
uid: decimal.Context.capitals
1990+
- fullName: decimal.Context.clamp
1991+
href: https://docs.python.org/3/library/decimal.html#decimal.Context.clamp
1992+
name: clamp
1993+
uid: decimal.Context.clamp
1994+
- fullName: decimal.Context.flags
1995+
href: https://docs.python.org/3/library/decimal.html#decimal.Context.flags
1996+
name: flags
1997+
uid: decimal.Context.flags
1998+
- fullName: decimal.Context.prec
1999+
href: https://docs.python.org/3/library/decimal.html#decimal.Context.prec
2000+
name: prec
2001+
uid: decimal.Context.prec
2002+
- fullName: decimal.Context.rounding
2003+
href: https://docs.python.org/3/library/decimal.html#decimal.Context.rounding
2004+
name: rounding
2005+
uid: decimal.Context.rounding
2006+
- fullName: decimal.Context.traps
2007+
href: https://docs.python.org/3/library/decimal.html#decimal.Context.traps
2008+
name: traps
2009+
uid: decimal.Context.traps
19782010
- fullName: definition.__doc__
19792011
href: https://docs.python.org/3/library/stdtypes.html#definition.__doc__
19802012
name: __doc__
@@ -2091,6 +2123,10 @@ references:
20912123
href: https://docs.python.org/3/library/doctest.html#doctest.UnexpectedException.test
20922124
name: test
20932125
uid: doctest.UnexpectedException.test
2126+
- fullName: doctest.module.__test__
2127+
href: https://docs.python.org/3/library/doctest.html#doctest.module.__test__
2128+
name: __test__
2129+
uid: doctest.module.__test__
20942130
- fullName: email.charset.Charset.body_encoding
20952131
href: https://docs.python.org/3/library/email.charset.html#email.charset.Charset.body_encoding
20962132
name: body_encoding
@@ -12439,6 +12475,10 @@ references:
1243912475
href: https://docs.python.org/3/library/logging.handlers.html#logging.handlers.RotatingFileHandler.emit
1244012476
name: emit
1244112477
uid: logging.handlers.RotatingFileHandler.emit
12478+
- fullName: logging.handlers.RotatingFileHandler.shouldRollover
12479+
href: https://docs.python.org/3/library/logging.handlers.html#logging.handlers.RotatingFileHandler.shouldRollover
12480+
name: shouldRollover
12481+
uid: logging.handlers.RotatingFileHandler.shouldRollover
1244212482
- fullName: logging.handlers.SMTPHandler.emit
1244312483
href: https://docs.python.org/3/library/logging.handlers.html#logging.handlers.SMTPHandler.emit
1244412484
name: emit
@@ -12507,6 +12547,10 @@ references:
1250712547
href: https://docs.python.org/3/library/logging.handlers.html#logging.handlers.TimedRotatingFileHandler.getFilesToDelete
1250812548
name: getFilesToDelete
1250912549
uid: logging.handlers.TimedRotatingFileHandler.getFilesToDelete
12550+
- fullName: logging.handlers.TimedRotatingFileHandler.shouldRollover
12551+
href: https://docs.python.org/3/library/logging.handlers.html#logging.handlers.TimedRotatingFileHandler.shouldRollover
12552+
name: shouldRollover
12553+
uid: logging.handlers.TimedRotatingFileHandler.shouldRollover
1251012554
- fullName: logging.handlers.WatchedFileHandler.emit
1251112555
href: https://docs.python.org/3/library/logging.handlers.html#logging.handlers.WatchedFileHandler.emit
1251212556
name: emit
@@ -22119,6 +22163,10 @@ references:
2211922163
href: https://docs.python.org/3/library/os.html#os.pardir
2212022164
name: pardir
2212122165
uid: os.pardir
22166+
- fullName: os.path.ALLOW_MISSING
22167+
href: https://docs.python.org/3/library/os.path.html#os.path.ALLOW_MISSING
22168+
name: ALLOW_MISSING
22169+
uid: os.path.ALLOW_MISSING
2212222170
- fullName: os.path.supports_unicode_filenames
2212322171
href: https://docs.python.org/3/library/os.path.html#os.path.supports_unicode_filenames
2212422172
name: supports_unicode_filenames
@@ -27023,6 +27071,10 @@ references:
2702327071
href: https://docs.python.org/3/library/ast.html#ast.TypeAlias
2702427072
name: TypeAlias
2702527073
uid: ast.TypeAlias
27074+
- fullName: ast.TypeIgnore
27075+
href: https://docs.python.org/3/library/ast.html#ast.TypeIgnore
27076+
name: TypeIgnore
27077+
uid: ast.TypeIgnore
2702627078
- fullName: ast.TypeVar
2702727079
href: https://docs.python.org/3/library/ast.html#ast.TypeVar
2702827080
name: TypeVar
@@ -30955,6 +31007,10 @@ references:
3095531007
href: https://docs.python.org/3/library/codecs.html#codecs.backslashreplace_errors
3095631008
name: backslashreplace_errors
3095731009
uid: codecs.backslashreplace_errors
31010+
- fullName: codecs.charmap_build
31011+
href: https://docs.python.org/3/library/codecs.html#codecs.charmap_build
31012+
name: charmap_build
31013+
uid: codecs.charmap_build
3095831014
- fullName: codecs.decode
3095931015
href: https://docs.python.org/3/library/codecs.html#codecs.decode
3096031016
name: decode

0 commit comments

Comments
 (0)