diff options
author | Ethan Furman <ethan@stoneleaf.us> | 2022-01-17 16:52:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 16:52:42 (GMT) |
commit | 62a6594e66ca955073be2f4e5a40291a39252ef3 (patch) | |
tree | b0a413800df355e05dcc9c348cf04aed1070d69c /Doc | |
parent | a4bc2218d270c4c7a898c8b3967c8c271afe9abe (diff) | |
download | cpython-62a6594e66ca955073be2f4e5a40291a39252ef3.zip cpython-62a6594e66ca955073be2f4e5a40291a39252ef3.tar.gz cpython-62a6594e66ca955073be2f4e5a40291a39252ef3.tar.bz2 |
bpo-40066: [Enum] fix tests (GH-30643)
- skip doctest that changes depending on target system
- skip doctest that only fails on CI
- substitute in values that change depending on target system
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 4d8488a..151f254 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -2081,7 +2081,7 @@ to speed up repeated connections from the same clients. .. versionchanged:: 3.6 :attr:`SSLContext.verify_mode` returns :class:`VerifyMode` enum: - >>> ssl.create_default_context().verify_mode + >>> ssl.create_default_context().verify_mode # doctest: +SKIP <VerifyMode.CERT_REQUIRED: 2> .. index:: single: certificates |