8000 Update Lib/test/test_inspect/test_inspect.py · python/cpython@8e3c3a9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8e3c3a9

Browse files
Update Lib/test/test_inspect/test_inspect.py
1 parent 9fc41f0 commit 8e3c3a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_inspect/test_inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5008,7 +5008,7 @@ def __init__(self, x: undef):
50085008
self.x = x
50095009

50105010
sig = inspect.signature(f, annotation_format=Format.FORWARDREF)
5011-
self.assertEqual(list(sig.parameters.keys()), ['x'])
5011+
self.assertEqual(list(sig.parameters), ['x'])
50125012
sig = inspect.signature(C, annotation_format=Format.FORWARDREF)
50135013
self.assertEqual(list(sig.parameters.keys()), ['x'])
50145014

0 commit comments

Comments
 (0)
0