@@ -1902,7 +1902,7 @@ def test_text_doc_routines_in_class(self, cls=pydocfodder.B):
19021902else :
19031903self .assertIn (' | get(...) method of builtins.dict instance' ,lines )
19041904self .assertIn (' | dict_get = get(...) method of builtins.dict instance' ,lines )
1905- self .assertIn (' | sin(... )' ,lines )
1905+ self .assertIn (' | sin(object, / )' ,lines )
19061906
19071907lines = self .getsection (result ,f' | Class methods{ where } :' ,' | ' + '-' * 70 )
19081908self .assertIn (' | B_classmethod(x)' ,lines )
@@ -1992,7 +1992,7 @@ def test_text_doc_routines_in_module(self):
19921992if not support .MISSING_C_DOCSTRINGS :
19931993self .assertIn (' sin(x, /)' ,lines )
19941994else :
1995- self .assertIn (' sin(... )' ,lines )
1995+ self .assertIn (' sin(object, / )' ,lines )
19961996
19971997def test_html_doc_routines_in_module (self ):
19981998doc = pydoc .HTMLDoc ()
@@ -2037,7 +2037,7 @@ def test_html_doc_routines_in_module(self):
20372037if not support .MISSING_C_DOCSTRINGS :
20382038self .assertIn (' sin(x, /)' ,lines )
20392039else :
2040- self .assertIn (' sin(... )' ,lines )
2040+ self .assertIn (' sin(object, / )' ,lines )
20412041
20422042
20432043@unittest .skipIf (