Skip to content

Commit 16ae02e

Browse files
committed
pythongh-85267: Improvements to inspect.signature __text_signature__ handling
This makes a couple related changes to inspect.signature's behaviour when parsing a signature from `__text_signature__`. First, `inspect.signature` is documented as only raising ValueError or TypeError. However, in some cases, we could raise RuntimeError. This PR changes that, thereby fixing python#83685. (Note that the new ValueErrors in RewriteSymbolics are caught and then reraised with a message) Second, `inspect.signature` could randomly drop parameters that it didn't understand (corresponding to `return None` in the `p` function). This is the core issue in python#85267. I think this is very surprising behaviour and it seems better to fail outright. Third, adding this new failure broke a couple tests. To fix them (and to e.g. allow `inspect.signature(select.epoll.register)` as in python#85267), I add constant folding of a couple binary operations to RewriteSymbolics. (There's some discussion of making signature expression evaluation arbitrary powerful in python#68155. I think that's out of scope. The additional constant folding here is pretty straightforward, useful, and not much of a slippery slope) Fourth, while python#85267 is incorrect about the cause of the issue, it turns out if you had consecutive newlines in __text_signature__, you'd get `tokenize.TokenError`. Finally, the `if name is invalid:` code path was dead, since `parse_name` never returned `invalid`.
1 parent 75a6fad commit 16ae02e

File tree

2 files changed

+39
-12
lines changed

2 files changed

+39
-12
lines changed

Lib/inspect.py

+18-11
Original file line numberDiff line numberDiff line change
@@ -2109,7 +2109,7 @@ def _signature_strip_non_python_syntax(signature):
21092109
self_parameter = None
21102110
last_positional_only = None
21112111

2112-
lines = [l.encode('ascii') for l in signature.split('\n')]
2112+
lines = [l.encode('ascii') for l in signature.split('\n') if l]
21132113
generator = iter(lines).__next__
21142114
token_stream = tokenize.tokenize(generator)
21152115

@@ -2185,7 +2185,6 @@ def _signature_fromstr(cls, obj, s, skip_bound_arg=True):
21852185

21862186
parameters = []
21872187
empty = Parameter.empty
2188-
invalid = object()
21892188

21902189
module = None
21912190
module_dict = {}
@@ -2209,11 +2208,11 @@ def wrap_value(s):
22092208
try:
22102209
value = eval(s, sys_module_dict)
22112210
except NameError:
2212-
raise RuntimeError()
2211+
raise ValueError
22132212

22142213
if isinstance(value, (str, int, float, bytes, bool, type(None))):
22152214
return ast.Constant(value)
2216-
raise RuntimeError()
2215+
raise ValueError
22172216

22182217
class RewriteSymbolics(ast.NodeTransformer):
22192218
def visit_Attribute(self, node):
@@ -2233,19 +2232,27 @@ def visit_Name(self, node):
22332232
raise ValueError()
22342233
return wrap_value(node.id)
22352234

2235+
def visit_BinOp(self, node):
2236+
left = self.visit(node.left)
2237+
right = self.visit(node.right)
2238+
if not isinstance(left, ast.Constant) or not isinstance(right, ast.Constant):
2239+
raise ValueError
2240+
if isinstance(node.op, ast.Add):
2241+
return ast.Constant(left.value + right.value)
2242+
elif isinstance(node.op, ast.Sub):
2243+
return ast.Constant(left.value - right.value)
2244+
elif isinstance(node.op, ast.BitOr):
2245+
return ast.Constant(left.value | right.value)
2246+
raise ValueError
2247+
22362248
def p(name_node, default_node, default=empty):
22372249
name = parse_name(name_node)
2238-
if name is invalid:
2239-
return None
22402250
if default_node and default_node is not _empty:
22412251
try:
22422252
default_node = RewriteSymbolics().visit(default_node)
2243-
o = ast.literal_eval(default_node)
2253+
default = ast.literal_eval(default_node)
22442254
except ValueError:
2245-
o = invalid
2246-
if o is invalid:
2247-
return None
2248-
default = o if o is not invalid else default
2255+
raise ValueError("{!r} builtin has invalid signature".format(obj)) from None
22492256
parameters.append(Parameter(name, kind, default=default, annotation=empty))
22502257

22512258
# non-keyword-only parameters

Lib/test/test_inspect.py

+21-1
Original file line numberDiff line numberDiff line change
@@ -2474,7 +2474,7 @@ def p(name): return signature.parameters[name].default
24742474
self.assertEqual(p('f'), False)
24752475
self.assertEqual(p('local'), 3)
24762476
self.assertEqual(p('sys'), sys.maxsize)
2477-
self.assertNotIn('exp', signature.parameters)
2477+
self.assertEqual(p('exp'), sys.maxsize - 1)
24782478

24792479
test_callable(object)
24802480

@@ -4235,10 +4235,30 @@ def func(*args, **kwargs):
42354235
sig = inspect.signature(func)
42364236
self.assertIsNotNone(sig)
42374237
self.assertEqual(str(sig), '(self, /, a, b=1, *args, c, d=2, **kwargs)')
4238+
42384239
func.__text_signature__ = '($self, a, b=1, /, *args, c, d=2, **kwargs)'
42394240
sig = inspect.signature(func)
42404241
self.assertEqual(str(sig), '(self, a, b=1, /, *args, c, d=2, **kwargs)')
42414242

4243+
func.__text_signature__ = '(self, a=1+2, b=4-3, c=1 | 4 | 16)'
4244+
sig = inspect.signature(func)
4245+
self.assertEqual(str(sig), '(self, a=3, b=1, c=21)')
4246+
4247+
func.__text_signature__ = '(self, a=1,\nb=2,\n\n\n c=3)'
4248+
sig = inspect.signature(func)
4249+
self.assertEqual(str(sig), '(self, a=1, b=2, c=3)')
4250+
4251+
func.__text_signature__ = '(self, x=does_not_exist)'
4252+
with self.assertRaises(ValueError):
4253+
inspect.signature(func)
4254+
func.__text_signature__ = '(self, x=sys, y=inspect)'
4255+
with self.assertRaises(ValueError):
4256+
inspect.signature(func)
4257+
func.__text_signature__ = '(self, 123)'
4258+
with self.assertRaises(ValueError):
4259+
inspect.signature(func)
4260+
4261+
42424262
def test_base_class_have_text_signature(self):
42434263
# see issue 43118
42444264
from test.ann_module7 import BufferedReader

0 commit comments

Comments
 (0)