diff options
author | Dong-hee Na <donghee.na@python.org> | 2023-01-26 12:58:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-26 12:58:35 (GMT) |
commit | f2ac9510a5aa4f71d468f486140eae60f46833ad (patch) | |
tree | e59485c53e625488fed0a41809f63e0dbc7c1fa8 /Lib/test/support | |
parent | dfad678d7024ab86d265d84ed45999e031a03691 (diff) | |
download | cpython-f2ac9510a5aa4f71d468f486140eae60f46833ad.zip cpython-f2ac9510a5aa4f71d468f486140eae60f46833ad.tar.gz cpython-f2ac9510a5aa4f71d468f486140eae60f46833ad.tar.bz2 |
gh-85100: Migrate BPO link to the GitHub link for malloc warnings (gh-101343)
Diffstat (limited to 'Lib/test/support')
-rw-r--r-- | Lib/test/support/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index e4e4de8..4a22ccd 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -582,7 +582,8 @@ def darwin_malloc_err_warning(test_name): msg = ' NOTICE ' detail = (f'{test_name} may generate "malloc can\'t allocate region"\n' 'warnings on macOS systems. This behavior is known. Do not\n' - 'report a bug unless tests are also failing. See bpo-40928.') + 'report a bug unless tests are also failing.\n' + 'See https://github.com/python/cpython/issues/85100') padding, _ = shutil.get_terminal_size() print(msg.center(padding, '-')) |