py2docfx 0.1.11.dev1985872__py3-none-any.whl → 0.1.11.dev1989123__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- py2docfx/__main__.py +13 -8
- py2docfx/convert_prepare/environment.py +1 -1
- py2docfx/convert_prepare/generate_document.py +5 -5
- py2docfx/convert_prepare/get_source.py +2 -2
- py2docfx/convert_prepare/pack.py +4 -4
- py2docfx/convert_prepare/sphinx_caller.py +34 -8
- py2docfx/convert_prepare/tests/test_environment.py +0 -2
- py2docfx/convert_prepare/tests/test_generate_document.py +4 -2
- py2docfx/convert_prepare/tests/test_get_source.py +1 -0
- py2docfx/convert_prepare/tests/test_pack.py +3 -1
- py2docfx/convert_prepare/tests/test_params.py +0 -1
- py2docfx/convert_prepare/tests/test_sphinx_caller.py +8 -6
- py2docfx/convert_prepare/tests/test_subpackage.py +1 -0
- py2docfx/docfx_yaml/build_finished.py +1 -1
- py2docfx/docfx_yaml/logger.py +12 -11
- py2docfx/docfx_yaml/tests/roots/test-writer-uri/code_with_uri.py +0 -7
- py2docfx/docfx_yaml/tests/test_writer_uri.py +0 -4
- py2docfx/docfx_yaml/writer.py +1 -13
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/authorization_code.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azd_cli.py +20 -14
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_arc.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_cli.py +36 -14
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_powershell.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/chained.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/default.py +4 -3
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/imds.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/managed_identity.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/__init__.py +2 -0
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/auth_code_redirect_handler.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/decorators.py +15 -7
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/interactive.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/managed_identity_client.py +0 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_client.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_managed_identity_client.py +2 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/shared_token_cache.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/utils.py +17 -2
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_version.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azd_cli.py +14 -11
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_cli.py +30 -12
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/default.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/imds.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/managed_identity.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/decorators.py +15 -7
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/managed_identity_client.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/__about__.py +1 -1
- {py2docfx-0.1.11.dev1985872.dist-info → py2docfx-0.1.11.dev1989123.dist-info}/METADATA +1 -1
- {py2docfx-0.1.11.dev1985872.dist-info → py2docfx-0.1.11.dev1989123.dist-info}/RECORD +49 -49
- {py2docfx-0.1.11.dev1985872.dist-info → py2docfx-0.1.11.dev1989123.dist-info}/WHEEL +0 -0
- {py2docfx-0.1.11.dev1985872.dist-info → py2docfx-0.1.11.dev1989123.dist-info}/top_level.txt +0 -0
@@ -21,24 +21,32 @@ def log_get_token_async(fn):
|
|
21
21
|
try:
|
22
22
|
token = await fn(*args, **kwargs)
|
23
23
|
_LOGGER.log(
|
24
|
-
logging.DEBUG if within_credential_chain.get() else logging.INFO,
|
24
|
+
logging.DEBUG if within_credential_chain.get() else logging.INFO,
|
25
|
+
"%s succeeded",
|
26
|
+
fn.__qualname__,
|
25
27
|
)
|
26
28
|
if _LOGGER.isEnabledFor(logging.DEBUG):
|
27
29
|
try:
|
28
|
-
base64_meta_data = token.token.split(".")[1]
|
29
|
-
|
30
|
+
base64_meta_data = token.token.split(".")[1]
|
31
|
+
padding_needed = -len(base64_meta_data) % 4
|
32
|
+
if padding_needed:
|
33
|
+
base64_meta_data += "=" * padding_needed
|
34
|
+
json_bytes = base64.urlsafe_b64decode(base64_meta_data)
|
30
35
|
json_string = json_bytes.decode("utf-8")
|
31
36
|
json_dict = json.loads(json_string)
|
32
37
|
upn = json_dict.get("upn", "unavailableUpn")
|
38
|
+
appid = json_dict.get("appid", "<unavailable>")
|
39
|
+
tid = json_dict.get("tid", "<unavailable>")
|
40
|
+
oid = json_dict.get("oid", "<unavailable>")
|
33
41
|
log_string = (
|
34
|
-
"[Authenticated account] Client ID: {}.
|
35
|
-
"
|
42
|
+
f"[Authenticated account] Client ID: {appid}. "
|
43
|
+
f"Tenant ID: {tid}. User Principal Name: {upn}. Object ID (user): {oid}"
|
36
44
|
)
|
37
45
|
_LOGGER.debug(log_string)
|
38
46
|
except Exception as ex: # pylint: disable=broad-except
|
39
47
|
_LOGGER.debug("Failed to log the account information: %s", ex, exc_info=True)
|
40
48
|
return token
|
41
|
-
except Exception as ex:
|
49
|
+
except Exception as ex:
|
42
50
|
_LOGGER.log(
|
43
51
|
logging.DEBUG if within_credential_chain.get() else logging.WARNING,
|
44
52
|
"%s failed: %s",
|
@@ -67,7 +75,7 @@ def wrap_exceptions(fn):
|
|
67
75
|
return result
|
68
76
|
except ClientAuthenticationError:
|
69
77
|
raise
|
70
|
-
except Exception as ex:
|
78
|
+
except Exception as ex:
|
71
79
|
auth_error = ClientAuthenticationError(message="Authentication failed: {}".format(ex))
|
72
80
|
raise auth_error from ex
|
73
81
|
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/managed_identity_client.py
CHANGED
@@ -15,7 +15,7 @@ from ..._internal.pipeline import build_async_pipeline
|
|
15
15
|
T = TypeVar("T", bound="AsyncManagedIdentityClient")
|
16
16
|
|
17
17
|
|
18
|
-
# pylint:disable=async-client-bad-name
|
18
|
+
# pylint:disable=async-client-bad-name
|
19
19
|
class AsyncManagedIdentityClient(AsyncContextManager, ManagedIdentityClientBase):
|
20
20
|
async def __aenter__(self: T) -> T:
|
21
21
|
await self._pipeline.__aenter__()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: py2docfx
|
3
|
-
Version: 0.1.11.
|
3
|
+
Version: 0.1.11.dev1989123
|
4
4
|
Summary: A package built based on Sphinx which download source code package and generate yaml files supported by docfx.
|
5
5
|
Author: Microsoft Corporation
|
6
6
|
License: MIT License
|
@@ -1,15 +1,15 @@
|
|
1
1
|
py2docfx/__init__.py,sha256=kPRhPGPC1JknDotkksG428c1iIgfFr_4_7Jm-llrowY,72
|
2
|
-
py2docfx/__main__.py,sha256=
|
2
|
+
py2docfx/__main__.py,sha256=RAMBoN2fmo5noLFHnaWsfII82FVQiTKJrBU8tdr-RfQ,5783
|
3
3
|
py2docfx/convert_prepare/__init__.py,sha256=XxtxrP0kmW3ZBHIAoxsPDEHzcgeC0WSnole8Lk6CjKs,11
|
4
4
|
py2docfx/convert_prepare/arg_parser.py,sha256=Wa1iK8a0Gb3QqaS4X7nUPGvh-7mWhuBS9IVbmnjC770,7606
|
5
5
|
py2docfx/convert_prepare/constants.py,sha256=RC5DqNkqWvx4hb91FrajZ1R9dBFLxcPyoEJ43jdm36E,102
|
6
|
-
py2docfx/convert_prepare/environment.py,sha256=
|
6
|
+
py2docfx/convert_prepare/environment.py,sha256=SpXy3oE9QuDOXK5J3lJd3kl-oXGATUDxe0K137zngXY,6988
|
7
7
|
py2docfx/convert_prepare/generate_conf.py,sha256=wqs6iyElzJarH-20_qEL9zvZvt5xfBMsGXSXPSZy6wg,2295
|
8
|
-
py2docfx/convert_prepare/generate_document.py,sha256=
|
9
|
-
py2docfx/convert_prepare/get_source.py,sha256=
|
8
|
+
py2docfx/convert_prepare/generate_document.py,sha256=vZ0WCHPQfQ11wFLclcKW-7mCkEgvJ1z90yn8BF04u5c,2937
|
9
|
+
py2docfx/convert_prepare/get_source.py,sha256=AWkvjdobuoMGob_wBiw_SI5jeewcYUaCoaSZdGt4Hgc,5241
|
10
10
|
py2docfx/convert_prepare/git.py,sha256=OIoaX_0LG5ueY8zmUwrbxl_YyMxwLzgTp6g0uSkC2Y0,6617
|
11
11
|
py2docfx/convert_prepare/install_package.py,sha256=hATmgazcSX7k2n4jQXh9sQMyNUc1k1YqHv5K5UMALq4,262
|
12
|
-
py2docfx/convert_prepare/pack.py,sha256=
|
12
|
+
py2docfx/convert_prepare/pack.py,sha256=0VN7mr-O0oGRb1auGN9FNPDXLY-73q-HLP9bLfmQVIw,1670
|
13
13
|
py2docfx/convert_prepare/package_info.py,sha256=BBpiuLpnkbxio_k4H6afPQPPKQEMQYO62kvJQK3BDMg,7698
|
14
14
|
py2docfx/convert_prepare/package_info_extra_settings.py,sha256=u5B5e8hc0m9PA_-0kJzq1LtKn-xzZlucwXHTFy49mDg,1475
|
15
15
|
py2docfx/convert_prepare/params.py,sha256=PXMB8pLtb4XbfI322avA47q0AO-TyBE6kZf7FU8I6v4,1771
|
@@ -17,7 +17,7 @@ py2docfx/convert_prepare/paths.py,sha256=964RX81Qf__rzXgEATfqBNFCKTYVjLt9J7WCz2T
|
|
17
17
|
py2docfx/convert_prepare/pip_utils.py,sha256=GPWGUBcxW8JKreGwxZIAe9AWAI78aL1aFan8DvaAf1o,2228
|
18
18
|
py2docfx/convert_prepare/repo_info.py,sha256=6ASJlhBwf6vZTSENgrWCVlJjlJVhuBxzdQyWEdWAC4c,117
|
19
19
|
py2docfx/convert_prepare/source.py,sha256=6-A7oof3-WAQcQZZVpT9pKiFLH4CCIZeYqq0MN0O3gw,1710
|
20
|
-
py2docfx/convert_prepare/sphinx_caller.py,sha256=
|
20
|
+
py2docfx/convert_prepare/sphinx_caller.py,sha256=6ftolgangs8G7NRKRVLFB0Rhz5vI8RNXZbM6aI5yGGM,4882
|
21
21
|
py2docfx/convert_prepare/subpackage.py,sha256=mXAi_07pXvnPkSLZfykDh_7VeFxfLy74pYlzhMO8N_Q,5183
|
22
22
|
py2docfx/convert_prepare/utils.py,sha256=TwfDjIqIx_nAoSeQ-LX30h_-d96WhPQcAu7P8N_tSjM,1618
|
23
23
|
py2docfx/convert_prepare/conf_templates/conf.py_t,sha256=8zxvY1WiG-z2aiSNDY0719C08QxZLXXEMwKfYSGN0ZE,3811
|
@@ -26,16 +26,16 @@ py2docfx/convert_prepare/post_process/merge_toc.py,sha256=DPUvL6eS0Q4gcp_fdGgWQJ
|
|
26
26
|
py2docfx/convert_prepare/subpackage_merge/merge_root_package.py,sha256=uK96qL2asuSfo_3SZaoP8XZaUvjf5mNkr17JNbZR4Lg,1026
|
27
27
|
py2docfx/convert_prepare/subpackage_merge/merge_toc.py,sha256=nkVqe8R0m8D6cyTYV7aIpMDXorvn4-LXfU_vIK_hJBg,1706
|
28
28
|
py2docfx/convert_prepare/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
|
-
py2docfx/convert_prepare/tests/test_environment.py,sha256=
|
30
|
-
py2docfx/convert_prepare/tests/test_generate_document.py,sha256=
|
31
|
-
py2docfx/convert_prepare/tests/test_get_source.py,sha256=
|
32
|
-
py2docfx/convert_prepare/tests/test_pack.py,sha256=
|
29
|
+
py2docfx/convert_prepare/tests/test_environment.py,sha256=08oO7K7cDIOP3TNCVXh0bqYiok_sFpmBFOMbPYULLBk,2103
|
30
|
+
py2docfx/convert_prepare/tests/test_generate_document.py,sha256=mY8DRT-WRGIBFdDRdFwa7ZSUQwR-fTQtyKwzrzFZLU8,2621
|
31
|
+
py2docfx/convert_prepare/tests/test_get_source.py,sha256=49dgQrstyfokG4ZCM7tP6d33v2s7eGFpvb2EcR2GJzc,7711
|
32
|
+
py2docfx/convert_prepare/tests/test_pack.py,sha256=xP-Khnj1MfPdIYaUDwXdvXNlI-uHQT3ihZ5d9zCZ914,4195
|
33
33
|
py2docfx/convert_prepare/tests/test_package_info.py,sha256=3B-IzmUjETVO-5s3g3Lmh2E6JgopwnRauv8mB-SDZEM,3361
|
34
|
-
py2docfx/convert_prepare/tests/test_params.py,sha256=
|
34
|
+
py2docfx/convert_prepare/tests/test_params.py,sha256=itwmVdBMtU1qIXAGaIoaDfvTOYyAL2B_WLsaBV9KUZY,2232
|
35
35
|
py2docfx/convert_prepare/tests/test_post_process_merge_toc.py,sha256=YKOcn4_lf4syGsAvJ9BqpdUUc3SLfK4TiOX1lpXJT_Y,885
|
36
36
|
py2docfx/convert_prepare/tests/test_source.py,sha256=LNFZtvjz6QhVLOxatjWokYCCcoSm0bhTikMF9KoTPIE,2025
|
37
|
-
py2docfx/convert_prepare/tests/test_sphinx_caller.py,sha256=
|
38
|
-
py2docfx/convert_prepare/tests/test_subpackage.py,sha256=
|
37
|
+
py2docfx/convert_prepare/tests/test_sphinx_caller.py,sha256=yi2M4sct4o6-EBKz4Ye9_lyqwYMiSMLNiPhoBfkX5iw,2748
|
38
|
+
py2docfx/convert_prepare/tests/test_subpackage.py,sha256=famt8LqwS8hCujtzvRLE5Ih8pa7t45y0d1EBk3UdYns,4984
|
39
39
|
py2docfx/convert_prepare/tests/data/generate_document/azure-dummy-sourcecode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
40
|
py2docfx/convert_prepare/tests/data/generate_document/azure-dummy-sourcecode/azure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
41
|
py2docfx/convert_prepare/tests/data/generate_document/azure-dummy-sourcecode/azure/dummy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -57,7 +57,7 @@ py2docfx/convert_prepare/tests/data/subpackage/azure-mgmt-containerservice/azure
|
|
57
57
|
py2docfx/convert_prepare/tests/data/subpackage/azure-mgmt-containerservice/azure/mgmt/containerservice/v2018_03_31/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
58
|
py2docfx/convert_prepare/tests/data/subpackage/azure-mgmt-containerservice/azure/mgmt/containerservice/v2018_03_31/models.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
59
|
py2docfx/docfx_yaml/__init__.py,sha256=KCEizAXv-SXtrYhvFfLHdBWDhz51AA9uagaeTL-Itpo,100
|
60
|
-
py2docfx/docfx_yaml/build_finished.py,sha256=
|
60
|
+
py2docfx/docfx_yaml/build_finished.py,sha256=M0YOIgr6lQY1lqwiAIDykhnsfOtTJ1ytKxmCr0JQp_E,13826
|
61
61
|
py2docfx/docfx_yaml/build_init.py,sha256=lAw-fnBVQbySfZ7Sut_NpFQUjnqLOmnGQrTBBH2RXcg,1860
|
62
62
|
py2docfx/docfx_yaml/common.py,sha256=UN1MUmjUoN1QSFDR1Cm_bfRuHr6FQiOe5VQV6s8xzjc,6841
|
63
63
|
py2docfx/docfx_yaml/convert_class.py,sha256=YaPjxqNy0p6AXi3H3T0l1MZeYRZ3dWkqusO4E0KT9QU,2161
|
@@ -65,7 +65,7 @@ py2docfx/docfx_yaml/convert_enum.py,sha256=HX6qdjDbdbBblx-TH41JXBLIJY3wzL3if-qnL
|
|
65
65
|
py2docfx/docfx_yaml/convert_module.py,sha256=GptO1MRwaQ2Qbu724F0kCDDQQTZe7mWOtrOp3Rzgl-I,2259
|
66
66
|
py2docfx/docfx_yaml/convert_package.py,sha256=Ep7PmvoLInDvY6OU5dveR6iVwyzGRkW3q6lX7yGJ0JE,2109
|
67
67
|
py2docfx/docfx_yaml/directives.py,sha256=zVVuNM_6AU9G6sbqL1UAyHHgPe7bkBWbthXI-PO5ez0,879
|
68
|
-
py2docfx/docfx_yaml/logger.py,sha256=
|
68
|
+
py2docfx/docfx_yaml/logger.py,sha256=2zcaZUXhI2jEaSYR-CZ5fVSenK-2Zm4qJLFoJH8BoZ4,6590
|
69
69
|
py2docfx/docfx_yaml/miss_reference.py,sha256=Btoj9wAvA4u_wU7JHH0Cei3910N8a7MS34OUqJvXAd4,2443
|
70
70
|
py2docfx/docfx_yaml/nodes.py,sha256=tBDi35jLJArlobl07DKOkmH2qz7dudXLp_kTUfR_r2w,412
|
71
71
|
py2docfx/docfx_yaml/parameter_utils.py,sha256=zGSIQrUfbXf9PUK-W_1K83Uo5Zk797Zlze6aMurbHIA,8706
|
@@ -75,7 +75,7 @@ py2docfx/docfx_yaml/settings.py,sha256=JQZNwFebczl-zn8Yk2taAGANRi-Hw8hywtDWxqXXF
|
|
75
75
|
py2docfx/docfx_yaml/translator.py,sha256=LSzNl4C-07bLbUZ5myfyWwh25cTNIIBih77Cp4tBWvo,25999
|
76
76
|
py2docfx/docfx_yaml/utils.py,sha256=m5jC_qP2NKqzUx_z0zgZ-HAmxQdNTpJYKkL_F9vGeII,1555
|
77
77
|
py2docfx/docfx_yaml/write_utils.py,sha256=q5qoYWw6GVDV8a3E8IxcSLWnN9sAer42VFRgadHBkgk,305
|
78
|
-
py2docfx/docfx_yaml/writer.py,sha256=
|
78
|
+
py2docfx/docfx_yaml/writer.py,sha256=rB_mwwCJfDNATKGHKnHBzWqxaOGfIHOTtJ_f_qsGB90,35313
|
79
79
|
py2docfx/docfx_yaml/yaml_builder.py,sha256=S3xty_ILxEUsw1J9VCwUkSLLYAUfQDm3fYbciv70gXc,2573
|
80
80
|
py2docfx/docfx_yaml/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
81
81
|
py2docfx/docfx_yaml/tests/conftest.py,sha256=CykkZxaDZ-3a1EIQdGBieSmHL9FdyTE2xTJZe9QgKcg,1214
|
@@ -91,7 +91,7 @@ py2docfx/docfx_yaml/tests/test_translator_numpy_returns.py,sha256=nmC70WUqCRcB1t
|
|
91
91
|
py2docfx/docfx_yaml/tests/test_translator_rst_returns.py,sha256=BL3nOMMTPzNPJk-P9oMANiXnJ7ocuiecbFHH4DU1n40,2942
|
92
92
|
py2docfx/docfx_yaml/tests/test_translator_signatures.py,sha256=DM51EOb4UXLkrO1-4cQQQvvX210goAsnxKJH-4A2U2Q,1537
|
93
93
|
py2docfx/docfx_yaml/tests/test_writer_table.py,sha256=UnGYXQ-QVxin_e-HGZAHdg1LSFV0qc480ZNsqPN9OYc,1444
|
94
|
-
py2docfx/docfx_yaml/tests/test_writer_uri.py,sha256=
|
94
|
+
py2docfx/docfx_yaml/tests/test_writer_uri.py,sha256=L9eFHZndD6H7nkznJ9Bw0v8xh9IegDlhhGFHBz9EHmM,1745
|
95
95
|
py2docfx/docfx_yaml/tests/test_writer_versions.py,sha256=0-0VTMhbZ4ml9ryu1gYnu0mM2yIEKsBuFYb2F6grzTE,2995
|
96
96
|
py2docfx/docfx_yaml/tests/roots/test-build-finished/code_with_signature_and_docstring.py,sha256=qvcKWL68C2aDTP8JT022nMV4EdZ50vhxVshMrHVO2sY,449
|
97
97
|
py2docfx/docfx_yaml/tests/roots/test-build-finished/conf.py,sha256=L8vIFmO546PCQks50Gif_uTBwC3cppohXrQaogfyRF8,410
|
@@ -123,7 +123,7 @@ py2docfx/docfx_yaml/tests/roots/test-translator-signatures/conf.py,sha256=avcbnI
|
|
123
123
|
py2docfx/docfx_yaml/tests/roots/test-translator-signatures/refered_objects.py,sha256=DJaX52mnHw9W3GSqKh75CYK87g4CczXNNjFO496Ai2U,79
|
124
124
|
py2docfx/docfx_yaml/tests/roots/test-writer-table/code_with_table_desc.py,sha256=J4eFvXsymgFvjnwVUY0APtUGwuxvt-AFJjTaEaQ7zMQ,574
|
125
125
|
py2docfx/docfx_yaml/tests/roots/test-writer-table/conf.py,sha256=avcbnIOV2mlGQwhMQJZC4W6UGRBRhnq1QBxjPWlySxQ,260
|
126
|
-
py2docfx/docfx_yaml/tests/roots/test-writer-uri/code_with_uri.py,sha256=
|
126
|
+
py2docfx/docfx_yaml/tests/roots/test-writer-uri/code_with_uri.py,sha256=bzWTZpY2yf_By2bOSl1GFaY3BsZpkAvwQuGztlcHKkQ,537
|
127
127
|
py2docfx/docfx_yaml/tests/roots/test-writer-uri/conf.py,sha256=avcbnIOV2mlGQwhMQJZC4W6UGRBRhnq1QBxjPWlySxQ,260
|
128
128
|
py2docfx/docfx_yaml/tests/roots/test-writer-versions/code_with_version_directives.py,sha256=UuizbrJPaG_PcaH18BvbI9KQevOaLd4SslpnzMSqcrE,1030
|
129
129
|
py2docfx/docfx_yaml/tests/roots/test-writer-versions/conf.py,sha256=SCEKrm9VigArfdgf-GAieJD-40d0ctT6urmGIjFOZLM,404
|
@@ -1971,28 +1971,28 @@ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_constants.py,sha256=CawcaT
|
|
1971
1971
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_enums.py,sha256=kaZnPeoAQiEYVW19_BaXFaP_rt4viwfiIRPzYuo5rGs,2399
|
1972
1972
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_exceptions.py,sha256=Ilad2QoECsI81JrVIFV3gZfMEetA9EL5PoyBwzLIDWY,1954
|
1973
1973
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_persistent_cache.py,sha256=cCcS1K8dkuaVQ6GiPIsa1ifB8NM74Z2CAKm-Ty6CVLs,5840
|
1974
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_version.py,sha256=
|
1974
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_version.py,sha256=ZFc7EBHITbgcUxJk-s7aMH90qVVpXl15b9zzsytfKd0,170
|
1975
1975
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/__init__.py,sha256=HiD0uRVJ7Okw8ICCzWrMWKeEvf2RUa3DuwdDUgIxg5s,1756
|
1976
1976
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/app_service.py,sha256=mc0GqUWXLjcgkZX64IV3aVmJd1M1-fo5h6ssVe0Iklo,1424
|
1977
1977
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/application.py,sha256=Ew2pypi9Z81E0xLoROEyX0IUlnYG_e4p1NJ3OckNHpM,6435
|
1978
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/authorization_code.py,sha256=
|
1979
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azd_cli.py,sha256=
|
1980
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_arc.py,sha256=
|
1981
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_cli.py,sha256=
|
1978
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/authorization_code.py,sha256=ZmdEIn710IqPXSeVNzgdHc9IZ-XrN8krZFhp3KYnAzM,7217
|
1979
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azd_cli.py,sha256=KcUoPaJaftVTL6-7r0f1W7L1D2Ds3dEb6JCWJjoNDA0,12440
|
1980
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_arc.py,sha256=2B5SYKKGIEg8y8kC_zccSspxqVllKrIgP4WF_WD9ky0,4907
|
1981
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_cli.py,sha256=ypx8tGKbPRVE7oOXOQQn73uUeMfuDhkaSrU0RTYTVLo,11275
|
1982
1982
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_ml.py,sha256=qLMRTkkecgZRwA6HoXf-9GoEp0HddbPoYioBcWYwOF4,3000
|
1983
1983
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_pipelines.py,sha256=xbWqDL0SAM84C_sunvPBQ1fMN8pS3iIdprwmZEa_rLs,8542
|
1984
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_powershell.py,sha256=
|
1984
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/azure_powershell.py,sha256=dp-k5ydDPn7gt1kqzr7fWN4YdBqm3F-P29-hRuM47p8,10929
|
1985
1985
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/browser.py,sha256=mkkIqHvkNPYwqcPHRQscx_qtQWDpf0TNBuxVu2ynf6Q,8307
|
1986
1986
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/certificate.py,sha256=uHVCvvdcjkIuamb_66ANHh6TVQAO9lUhcSjxr4J2V-0,9179
|
1987
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/chained.py,sha256=
|
1987
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/chained.py,sha256=FQO13rzJxthtCrlJzR-4HwMP4S7m1yMza0GbjiDxP1E,10015
|
1988
1988
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/client_assertion.py,sha256=cMzxMC46PU0RxWaYjjQ7pdSO6MDaXuaWBN3ZzCfhakY,3434
|
1989
1989
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/client_secret.py,sha256=U4d2uOTMfXCfjTBtZLpM1_uvVDSqQgtfPlMx88oqO_8,3114
|
1990
1990
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/cloud_shell.py,sha256=yyuxWKBM8cp0EI6IbVuGP2LvXfkidV0se5NABBuMH7k,1928
|
1991
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/default.py,sha256=
|
1991
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/default.py,sha256=1HM5XNFhDWpF-44_TqprGyt5hGq1ytSkG6WTaijq-6A,15323
|
1992
1992
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/device_code.py,sha256=DXW99i6FiKJ1EeTbqMqLbRZW8zpHpJkuyURHSe56i8E,6763
|
1993
1993
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/environment.py,sha256=uI3hrPNKdgVxNb1r6-Imaa__30o0nmOGb8VID8QzUR0,9511
|
1994
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/imds.py,sha256=
|
1995
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/managed_identity.py,sha256=
|
1994
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/imds.py,sha256=3-qDYPz5TH38Uamjb1ZxdUPo-V5FlsOLJMJMg5w3GDY,5550
|
1995
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/managed_identity.py,sha256=3sr0wbxGUw2lvJXP25V_APV1yuL3zdc2euMKJdxPB1k,9654
|
1996
1996
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/on_behalf_of.py,sha256=e8av70lj1hwwqrQc7bX1MI5bH5OWsZA6LZvy1ib_M4U,9014
|
1997
1997
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/service_fabric.py,sha256=t2ir_-JJi4krqOa6TqwbiU7vosIZP3_mN0GrQ-sABsc,1454
|
1998
1998
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/shared_cache.py,sha256=kqlEMbHJb1Ky2Whnuwn72N1EjpaEAxW45cCsq72R5Ek,8997
|
@@ -2000,26 +2000,26 @@ py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/silent.py,sha2
|
|
2000
2000
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/user_password.py,sha256=x92tkv7xe-YK-mbM0QBFu0kaHShuMHRZusZs8ByxoSI,4556
|
2001
2001
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/vscode.py,sha256=39g07fYproZ8QR5klBXBNR0p70sClTJOTfrup7EPRDI,10986
|
2002
2002
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/workload_identity.py,sha256=hxVmnqh8lqJ6hfmkgBfU84Au34_KaJ_S6zrtyPlCAqg,4378
|
2003
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/__init__.py,sha256=
|
2003
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/__init__.py,sha256=bZ5LRc-OWVx1WTrL4gPzz6BUrjlZbSC0nvcY_JUJ1uU,1586
|
2004
2004
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/aad_client.py,sha256=O8b9pnlc6HIRdV0YqrCjYaMOt1z8mYKPE4bOdrYtR-Q,3299
|
2005
2005
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/aad_client_base.py,sha256=5CZE19MJAyFmdGShM-S-RxPYGWCEhbj53uMZyMas5jo,16675
|
2006
2006
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/aadclient_certificate.py,sha256=bURwToOkDTu1C1R-wgDltfDQpmeioQxmMl__Xq64H4g,1890
|
2007
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/auth_code_redirect_handler.py,sha256=
|
2007
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/auth_code_redirect_handler.py,sha256=E4rQw6AvhEDS_CcBOX_dzNPtfcUGp1WXpLO2kK8QFHc,2288
|
2008
2008
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/client_credential_base.py,sha256=YBEnqgTBOebvSoTaCY20qt3ue7_ovK4i0O_HyX_pC3E,2508
|
2009
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/decorators.py,sha256=
|
2009
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/decorators.py,sha256=uM-aP4FsVYT2aR1BX41kdvHHs83XxB-O0vYzRq3YUw4,2877
|
2010
2010
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/get_token_mixin.py,sha256=WTre9ydKPvucT3NySXpqpoOaGKFANk3lYeoong08_3s,7290
|
2011
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/interactive.py,sha256=
|
2011
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/interactive.py,sha256=jmllrTE15PjhJAp81ghmljVtrh3Ps5qayUbBL08e_yk,13848
|
2012
2012
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/linux_vscode_adapter.py,sha256=LL2ImHX7IzfSwOQ0BuvOrQ1do_X6fo_o3b3r4O77nI8,2952
|
2013
2013
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/macos_vscode_adapter.py,sha256=sRcYxS_xaiSaRmruqUH3_wXmDA6BWRACXNs8dnvBkNw,1202
|
2014
2014
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/managed_identity_base.py,sha256=pBEoUq39MElBnuvqwEAsjco2I4wznp3nxwgDkW5qiPo,2416
|
2015
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/managed_identity_client.py,sha256=
|
2016
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_client.py,sha256=
|
2015
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/managed_identity_client.py,sha256=mWD_pDAjsFaUUdiVo5oupe9jt8mCEzraNs0_Wtha8_g,5982
|
2016
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_client.py,sha256=NdISdFIBe4bzmq4jEYaYurUEOHYUnZnZ6vVBuT8JFfU,5783
|
2017
2017
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_credentials.py,sha256=xP3qVooz7zqr94j0vAho3qY_-jSwNpse-HQAPKyMZdY,6041
|
2018
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_managed_identity_client.py,sha256=
|
2018
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_managed_identity_client.py,sha256=rd8rRTye492y940_rUJLUgFBeMaKOBUDBa0NTUuDvjg,9695
|
2019
2019
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/pipeline.py,sha256=Zv7bjJhbKKq3bemZV_PRRTf0UZnIO9QtoO7ID-1-OIs,2867
|
2020
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/shared_token_cache.py,sha256=
|
2020
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/shared_token_cache.py,sha256=Q4sGmpQrrxWu0yXRuZ66ndqxa8CjHORvTp2Suegz2sY,12555
|
2021
2021
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/user_agent.py,sha256=aOlTYL7cTqLLoRppt0oKao64YtYnUrw6BAfDc9pghZg,319
|
2022
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/utils.py,sha256=
|
2022
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/utils.py,sha256=V4p1qdKBh8tenSjsgXHcJhXws4t9Hq_TsqXEPX2Vbuc,5679
|
2023
2023
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/win_vscode_adapter.py,sha256=XM3JW1YeY9-4p3aauJThbBKVdmQ-RD-pzaAFrS8QhOc,2444
|
2024
2024
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/__init__.py,sha256=sXPK0GJ7WNbMWQaTvbG1SXa2riULBZvayDTlLRzTosY,1325
|
2025
2025
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_bearer_token_provider.py,sha256=2vUCmdarROmCg_tIuY20SIVP5J7NIO-spprGLrt7TDE,1783
|
@@ -2027,9 +2027,9 @@ py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/__init__.p
|
|
2027
2027
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/app_service.py,sha256=xb8LIoDfAdCZj60CiaKtdjUDLecNbLfkuC9Xy1ItwuE,836
|
2028
2028
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/application.py,sha256=vflikwr_RbG7UJaeMiSO7XxlgnAZr8hR_9thacNh7CQ,6539
|
2029
2029
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/authorization_code.py,sha256=05qyzHrEgo2EroIgrZz3af0T8H9AC3jod2TaIR1DTD0,7401
|
2030
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azd_cli.py,sha256=
|
2030
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azd_cli.py,sha256=TiCwnuluniSH9yyZ1ifbW2dpYJ8qYjHPnVVvYzjqRqc,10975
|
2031
2031
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_arc.py,sha256=ottnsKp-t7mpUXrn1I_TtgHKqT75WsZR5qGMkz7_mF0,1857
|
2032
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_cli.py,sha256=
|
2032
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_cli.py,sha256=iUsXxt-nXvY2rXYE08blaSSu7FFgK6ys26cmgPx1yro,9902
|
2033
2033
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_ml.py,sha256=D7hQWuNLFHQb60Za5cXFeAK7aRT5ta0i8banjc4j0tQ,827
|
2034
2034
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_pipelines.py,sha256=FHVId296gbLEIXgBWYiXThMx0_W0lQB6-3LMyrkBa9U,7434
|
2035
2035
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_powershell.py,sha256=zmmW6n5KwtNphkAHex0rg7IOx8i0qzXYIq-NSBdJWng,8693
|
@@ -2038,10 +2038,10 @@ py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/chained.py
|
|
2038
2038
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/client_assertion.py,sha256=f46y6n1fMTTBaEZaMc9Dux7TwcSwGXkQq4pScLf8Jic,3511
|
2039
2039
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/client_secret.py,sha256=JHI9N_0qzvKpV_RvMMjChfnPMRtbPb7FF_n6GIVnKRk,3218
|
2040
2040
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/cloud_shell.py,sha256=jJ4b3hacR-Mzk3vcwvzbxwF4DrN60uyHv1BIhUzD3bA,1225
|
2041
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/default.py,sha256=
|
2041
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/default.py,sha256=wSDNeR94ISWuwaDSHzkOsAqyYp0yQ883tqgIHqqOdtk,13964
|
2042
2042
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/environment.py,sha256=1Duguy5dyhWKx4_vwwH2NMQyiBTPWQsWWy_u5auiRUA,7923
|
2043
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/imds.py,sha256=
|
2044
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/managed_identity.py,sha256=
|
2043
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/imds.py,sha256=IsANbJ1R8JbJ7OAlUa2sy6rXfnT51goG49gIAahNfug,4078
|
2044
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/managed_identity.py,sha256=gj37QkYZtNJLi0b19b-9CGYy_Z12JNwCVAoJCKgNTfw,9034
|
2045
2045
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/on_behalf_of.py,sha256=M6kn3uC-04wywCl9KpuYX1VvFJJBIfIT25TllDhxgzA,7300
|
2046
2046
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/service_fabric.py,sha256=15SUsJiLD29uKgYLeHJgh0EJumCYuM3TYx-JXe-IzOc,845
|
2047
2047
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/shared_cache.py,sha256=_soM-tNKtnmvZ8bbNxyz1tsyR7CTgH2tknbdxFa_rbk,7410
|
@@ -2049,10 +2049,10 @@ py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/vscode.py,
|
|
2049
2049
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/workload_identity.py,sha256=6kvXuQKxiIFWqEgW6qJdoB6eo3bqctmlfI2T63h0Fqs,3896
|
2050
2050
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/__init__.py,sha256=kqVXG7igSXSP_Gi4MzJPHoXaudlQV18A7U1qNEvXeMM,838
|
2051
2051
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/aad_client.py,sha256=nDPSqqrFjtmm5xWLc7exa3aWxDvhwwge8yEZ__5ZtrQ,4260
|
2052
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/decorators.py,sha256=
|
2052
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/decorators.py,sha256=aw8JChj6khlmXPkjbMtypcvUgwfyIiUlUF1227nFREI,2940
|
2053
2053
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/get_token_mixin.py,sha256=lcTyehjuQ3ztNNZHw6pGnE8AQgm-3fgpru1PzGyMTBg,7347
|
2054
2054
|
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/managed_identity_base.py,sha256=-F_2QCSSM-WSk_BrGYV_6chvLeF-uZ0XOoANWK_HK84,2735
|
2055
|
-
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/managed_identity_client.py,sha256=
|
2055
|
+
py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_internal/managed_identity_client.py,sha256=5WhFml6NNwDWKWy60H_GfX34gedwgdk9ogxwl1bT_1A,1514
|
2056
2056
|
py2docfx/venv/venv1/Lib/site-packages/cachetools/__init__.py,sha256=8FSISszrQC5dE0HjoiivM7z9Azm8cEo3uX4rwzDdlf0,25557
|
2057
2057
|
py2docfx/venv/venv1/Lib/site-packages/cachetools/func.py,sha256=aOVfSkuNWMRADpkHZGK7LeJ_VZ8wljzbRwIAliOuhAg,3719
|
2058
2058
|
py2docfx/venv/venv1/Lib/site-packages/cachetools/keys.py,sha256=AOgfoi-oioBOnEEk115_9qs0HKISrYnbcV4F0hyZ1yk,1777
|
@@ -2089,7 +2089,7 @@ py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/utils.py,sha256=oH9Q3Wc
|
|
2089
2089
|
py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/version.py,sha256=7_thI7FzRQxEsbtUYwrJs3FCFWF666mw74H8mggPRR0,123
|
2090
2090
|
py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/cli/__init__.py,sha256=d9MUx-1V_qD3x9igIy4JT4oC5CU0yjulk7QyZWeRFhg,144
|
2091
2091
|
py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/cli/__main__.py,sha256=lZ89qRWun7FRxX0qm1GhK-m0DH0i048yiMAX1mVIuRg,10731
|
2092
|
-
py2docfx/venv/venv1/Lib/site-packages/cryptography/__about__.py,sha256=
|
2092
|
+
py2docfx/venv/venv1/Lib/site-packages/cryptography/__about__.py,sha256=7_pvWpkU4M2C1cgTcHSQPw8Az1RaaIZ9nJ7gD7P4I30,445
|
2093
2093
|
py2docfx/venv/venv1/Lib/site-packages/cryptography/__init__.py,sha256=XsRL_PxbU6UgoyoglAgJQSrJCP97ovBA8YIEQ2-uI68,762
|
2094
2094
|
py2docfx/venv/venv1/Lib/site-packages/cryptography/exceptions.py,sha256=835EWILc2fwxw-gyFMriciC2SqhViETB10LBSytnDIc,1087
|
2095
2095
|
py2docfx/venv/venv1/Lib/site-packages/cryptography/fernet.py,sha256=aMU2HyDJ5oRGjg8AkFvHwE7BSmHY4fVUCaioxZcd8gA,6933
|
@@ -4193,7 +4193,7 @@ py2docfx/venv/venv1/Lib/site-packages/win32comext/taskscheduler/test/test_addtas
|
|
4193
4193
|
py2docfx/venv/venv1/Lib/site-packages/win32comext/taskscheduler/test/test_localsystem.py,sha256=08ojAS48W6RLsUbRD45j0SJhg_Y2NFHZT6qjT4Vrig0,75
|
4194
4194
|
py2docfx/venv/venv1/Scripts/pywin32_postinstall.py,sha256=u95n7QQUxpCjrZistYE-3gN451zXzopuJna8cXRQ4Jw,28115
|
4195
4195
|
py2docfx/venv/venv1/Scripts/pywin32_testall.py,sha256=-6yvZmd2lPQc4e8i6PgLsr_totF6mScvoq0Jqr0V2fM,3844
|
4196
|
-
py2docfx-0.1.11.
|
4197
|
-
py2docfx-0.1.11.
|
4198
|
-
py2docfx-0.1.11.
|
4199
|
-
py2docfx-0.1.11.
|
4196
|
+
py2docfx-0.1.11.dev1989123.dist-info/METADATA,sha256=vCwJ-f8nckfA2IU-16BEVWPS0ykGLSIDCGRbTHQFGlE,601
|
4197
|
+
py2docfx-0.1.11.dev1989123.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4198
|
+
py2docfx-0.1.11.dev1989123.dist-info/top_level.txt,sha256=5dH2uP81dczt_qQJ38wiZ-gzoVWasfiJALWRSjdbnYU,9
|
4199
|
+
py2docfx-0.1.11.dev1989123.dist-info/RECORD,,
|
File without changes
|
File without changes
|