diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2023-05-10 16:46:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 16:46:37 +0300 |
commit | 13ac1766bca7969a6c142c9176db901dd29c3519 (patch) | |
tree | 08cf753b97607fcd0796992a143e458651c01083 | |
parent | b8f7ab5783b370004757af5a4c6e70c63dc5fe7a (diff) | |
download | cpython-git-13ac1766bca7969a6c142c9176db901dd29c3519.tar.gz |
gh-103960: Dark mode: invert image brightness (#103983)
-rw-r--r-- | Doc/howto/logging.rst | 1 | ||||
-rw-r--r-- | Doc/library/hashlib.rst | 1 | ||||
-rw-r--r-- | Doc/library/pathlib.rst | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index 145449b2df..a72e9a820e 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -418,6 +418,7 @@ The flow of log event information in loggers and handlers is illustrated in the following diagram. .. image:: logging_flow.png + :class: invert-in-dark-mode Loggers ^^^^^^^ diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index 6275f96f7d..797870b9d7 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst @@ -430,6 +430,7 @@ Constructor functions also accept the following tree hashing parameters: .. figure:: hashlib-blake2-tree.png :alt: Explanation of tree mode parameters. + :class: invert-in-dark-mode See section 2.10 in `BLAKE2 specification <https://www.blake2.net/blake2_20130129.pdf>`_ for comprehensive review of tree diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index 5ffa33d4e6..93af07ae5a 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -21,6 +21,7 @@ inherit from pure paths but also provide I/O operations. .. image:: pathlib-inheritance.png :align: center + :class: invert-in-dark-mode If you've never used this module before or just aren't sure which class is right for your task, :class:`Path` is most likely what you need. It instantiates |