Skip to content

Commit 4052dd2

Browse files
authored
bpo-46198: Fix test_asyncio.test_sslproto (GH-31801)
GH-30297 removed a duplicate `from test import support` statement from `test_asyncio.test_sslproto`. However, in between that PR being filed and it being merged, GH-31275 removed the _other_ `from test import support` statement. This means that `support` is now undefined in `test_asyncio.test_sslproto`, causing the CI to fail on all platforms for all PRS.
1 parent 434ffb7 commit 4052dd2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Lib/test/test_asyncio/test_sslproto.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import socket
55
import unittest
66
import weakref
7+
from test import support
78
from unittest import mock
89
try:
910
import ssl

0 commit comments

Comments
 (0)