Commit 0cd2bf46 authored by Yury Selivanov's avatar Yury Selivanov

Issue 24200: Fix broken unittest.

parent f229bc5c
...@@ -1793,7 +1793,7 @@ class TestSignatureObject(unittest.TestCase): ...@@ -1793,7 +1793,7 @@ class TestSignatureObject(unittest.TestCase):
S((pkd, pk)) S((pkd, pk))
self.assertTrue(repr(sig).startswith('<Signature')) self.assertTrue(repr(sig).startswith('<Signature'))
self.assertTrue('"(po, pk' in repr(sig)) self.assertTrue('(po, pk' in repr(sig))
def test_signature_object_pickle(self): def test_signature_object_pickle(self):
def foo(a, b, *, c:1={}, **kw) -> {42:'ham'}: pass def foo(a, b, *, c:1={}, **kw) -> {42:'ham'}: pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment