Marco Ricci commited on 2025-06-02 22:08:35
Zeige 3 geänderte Dateien mit 4 Einfügungen und 4 Löschungen.
... | ... |
@@ -104,7 +104,7 @@ |
104 | 104 |
or |
105 | 105 |
[`derivepassphrase_vault`][derivepassphrase.cli.derivepassphrase_vault], |
106 | 106 |
or calling [`derivepassphrase`][derivepassphrase.cli.derivepassphrase] |
107 |
- via its [`.main`][click.BaseCommand.main] method, causes those functions |
|
107 |
+ via its [`.main`][click.Command.main] method, causes those functions |
|
108 | 108 |
to use the standard Python [logging][] and [warnings][] facilities to |
109 | 109 |
issue diagnostic messages, without output to standard error. |
110 | 110 |
(This includes using [`click.testing.CliRunner`][], which uses `.main` |
... | ... |
@@ -57,9 +57,9 @@ plugins: |
57 | 57 |
mkdocstrings: |
58 | 58 |
handlers: |
59 | 59 |
python: |
60 |
- import: |
|
60 |
+ inventories: |
|
61 | 61 |
- 'https://docs.python.org/3/objects.inv' |
62 |
- - 'https://click.palletsprojects.com/en/8.1.x/objects.inv' |
|
62 |
+ - 'https://click.palletsprojects.com/en/stable/objects.inv' |
|
63 | 63 |
- 'https://typing-extensions.readthedocs.io/en/latest/objects.inv' |
64 | 64 |
- 'https://cryptography.readthedocs.io/en/latest/objects.inv' |
65 | 65 |
- 'https://hypothesis.readthedocs.io/en/latest/objects.inv' |
... | ... |
@@ -2160,7 +2160,7 @@ class CliRunner: |
2160 | 2160 |
""" |
2161 | 2161 |
True if and only if [`click.testing.CliRunner`][] supports the |
2162 | 2162 |
`mix_stderr` attribute. It was removed in 8.2.0 in favor of the |
2163 |
- [`click.testing.StreamMixer`][] class. |
|
2163 |
+ `click.testing.StreamMixer` class. |
|
2164 | 2164 |
|
2165 | 2165 |
See also |
2166 | 2166 |
[`pallets/click#2523`](https://github.com/pallets/click/pull/2523). |
2167 | 2167 |