Skip to content

Commit 80d2c49

Browse files
committed
use the gh- ref instead of bpo- everywhere.
1 parent 2bc54ca commit 80d2c49

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/test/test_threading.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1173,7 +1173,7 @@ def __del__(self):
11731173

11741174
@cpython_only
11751175
def test_finalize_daemon_thread_hang(self):
1176-
# bpo-42969: tests that daemon threads hang during finalization
1176+
# gh-87135: tests that daemon threads hang during finalization
11771177
script = textwrap.dedent('''
11781178
import os
11791179
import sys

Python/ceval_gil.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ take_gil(PyThreadState *tstate)
386386

387387
if (_PyThreadState_MustExit(tstate)) {
388388
/* bpo-36475: If Py_Finalize() has been called and tstate is not
389-
the thread which called Py_Finalize(), bpo-42969: hang the
389+
the thread which called Py_Finalize(), gh-87135: hang the
390390
thread.
391391
392392
This code path can be reached by a daemon thread which was waiting

0 commit comments

Comments
 (0)