diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-04-02 22:38:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-02 22:38:58 (GMT) |
commit | 9a8ce957482e0d811be6ec2987e99a1f4be3558a (patch) | |
tree | db513ff88e90a8fc3af50c35cb7eca720cc5e3a5 /Lib | |
parent | d58ff6a616276c205e480225f588140f480271b7 (diff) | |
download | cpython-9a8ce957482e0d811be6ec2987e99a1f4be3558a.zip cpython-9a8ce957482e0d811be6ec2987e99a1f4be3558a.tar.gz cpython-9a8ce957482e0d811be6ec2987e99a1f4be3558a.tar.bz2 |
gh-103109: Document ignore_warnings() test support helper (GH-103110)
(cherry picked from commit 32937d6aa414ec7db5c63ef277f21db1880b3af4)
Co-authored-by: Charlie Zhao <zhaoyu_hit@qq.com>
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/support/warnings_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support/warnings_helper.py b/Lib/test/support/warnings_helper.py index a024fbe..93a91e6 100644 --- a/Lib/test/support/warnings_helper.py +++ b/Lib/test/support/warnings_helper.py @@ -36,7 +36,7 @@ def check_syntax_warning(testcase, statement, errtext='', def ignore_warnings(*, category): - """Decorator to suppress deprecation warnings. + """Decorator to suppress warnings. Use of context managers to hide warnings make diffs more noisy and tools like 'git blame' less useful. |