mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
gh-125761: Clarify repeated warning suppression criteria in warnings module (gh-126326)
This commit is contained in:
parent
cfb1b2f0cb
commit
10eeec2d4f
1 changed files with 13 additions and 0 deletions
|
@ -180,6 +180,19 @@ If a warning is reported and doesn't match any registered filter then the
|
|||
"default" action is applied (hence its name).
|
||||
|
||||
|
||||
|
||||
.. _repeated-warning-suppression-criteria:
|
||||
|
||||
Repeated Warning Suppression Criteria
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
The filters that suppress repeated warnings apply the following criteria to determine if a warning is considered a repeat:
|
||||
|
||||
- ``"default"``: A warning is considered a repeat only if the (*message*, *category*, *module*, *lineno*) are all the same.
|
||||
- ``"module"``: A warning is considered a repeat if the (*message*, *category*, *module*) are the same, ignoring the line number.
|
||||
- ``"once"``: A warning is considered a repeat if the (*message*, *category*) are the same, ignoring the module and line number.
|
||||
|
||||
|
||||
.. _describing-warning-filters:
|
||||
|
||||
Describing Warning Filters
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue