We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5957b9b commit 9a862b5Copy full SHA for 9a862b5
Lib/test/_test_multiprocessing.py
@@ -3277,8 +3277,8 @@ def test_context(self):
3277
@unittest.skipUnless(util.abstract_sockets_supported,
3278
"test needs abstract socket support")
3279
def test_abstract_socket(self):
3280
- with self.connection.Listener("\0something") as l:
3281
- with self.connection.Client(l.address) as c:
+ with self.connection.Listener("\0something") as listener:
+ with self.connection.Client(l.address) as client:
3282
with l.accept() as d:
3283
c.send(1729)
3284
self.assertEqual(d.recv(), 1729)
0 commit comments