[3.13] gh-133210: Fix test_inspect in --without-doc-strings mode (GH-133250) (#133263)

gh-133210: Fix `test_inspect` in `--without-doc-strings` mode (GH-133250)
(cherry picked from commit 27e011455d)

Co-authored-by: sobolevn <mail@sobolevn.me>
This commit is contained in:
Miss Islington (bot) 2025-05-01 18:36:12 +02:00 committed by GitHub
parent 90c786e377
commit f7d1109a12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3602,9 +3602,10 @@ def m1d(*args, **kwargs):
int))
def test_signature_on_classmethod(self):
self.assertEqual(self.signature(classmethod),
((('function', ..., ..., "positional_only"),),
...))
if not support.MISSING_C_DOCSTRINGS:
self.assertEqual(self.signature(classmethod),
((('function', ..., ..., "positional_only"),),
...))
class Test:
@classmethod
@ -3624,9 +3625,10 @@ def foo(cls, arg1, *, arg2=1):
...))
def test_signature_on_staticmethod(self):
self.assertEqual(self.signature(staticmethod),
((('function', ..., ..., "positional_only"),),
...))
if not support.MISSING_C_DOCSTRINGS:
self.assertEqual(self.signature(staticmethod),
((('function', ..., ..., "positional_only"),),
...))
class Test:
@staticmethod
@ -4076,9 +4078,10 @@ def __init__(self, b):
self.assertEqual(C(3), 8)
self.assertEqual(C(3, 7), 1)
# BUG: Returns '<Signature (b)>'
with self.assertRaises(AssertionError):
self.assertEqual(self.signature(C), self.signature((0).__pow__))
if not support.MISSING_C_DOCSTRINGS:
# BUG: Returns '<Signature (b)>'
with self.assertRaises(AssertionError):
self.assertEqual(self.signature(C), self.signature((0).__pow__))
class CM(type):
def __new__(mcls, name, bases, dct, *, foo=1):
@ -4478,7 +4481,8 @@ class C:
__call__ = (2).__pow__
self.assertEqual(C()(3), 8)
self.assertEqual(self.signature(C()), self.signature((0).__pow__))
if not support.MISSING_C_DOCSTRINGS:
self.assertEqual(self.signature(C()), self.signature((0).__pow__))
with self.subTest('ClassMethodDescriptorType'):
class C(dict):
@ -4487,7 +4491,8 @@ class C(dict):
res = C()([1, 2], 3)
self.assertEqual(res, {1: 3, 2: 3})
self.assertEqual(type(res), C)
self.assertEqual(self.signature(C()), self.signature(dict.fromkeys))
if not support.MISSING_C_DOCSTRINGS:
self.assertEqual(self.signature(C()), self.signature(dict.fromkeys))
with self.subTest('MethodDescriptorType'):
class C(str):
@ -4501,7 +4506,8 @@ class C(int):
__call__ = int.__pow__
self.assertEqual(C(2)(3), 8)
self.assertEqual(self.signature(C()), self.signature((0).__pow__))
if not support.MISSING_C_DOCSTRINGS:
self.assertEqual(self.signature(C()), self.signature((0).__pow__))
with self.subTest('MemberDescriptorType'):
class C:
@ -4519,7 +4525,8 @@ class C:
def __call__(self, *args, **kwargs):
pass
self.assertEqual(self.signature(C), ((), ...))
if not support.MISSING_C_DOCSTRINGS:
self.assertEqual(self.signature(C), ((), ...))
self.assertEqual(self.signature(C()),
((('a', ..., ..., "positional_only"),
('b', ..., ..., "positional_or_keyword"),