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 2f8caf0 commit 77fbd1fCopy full SHA for 77fbd1f
Lib/test/test_interpreters/test_api.py
@@ -1429,7 +1429,7 @@ def test_callable_requires_frame(self):
1429
res = interp.call(*call)
1430
self.assertEqual(res, expected)
1431
1432
- notshareable = [
+ result_not_pickleable = [
1433
globals,
1434
locals,
1435
vars,
@@ -1441,7 +1441,7 @@ def test_callable_requires_frame(self):
1441
dir: list,
1442
}.items():
1443
with self.subTest(str(func)):
1444
- if func in notshareable:
+ if func in result_not_pickleable:
1445
with self.assertRaises(interpreters.NotShareableError):
1446
interp.call(func)
1447
else:
0 commit comments