[issue39629] inspect.signature fails on math.hypot

2020-02-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: This isn't a bug. It is a known limitation of the ArgumentClinic that it cannot currently describe functions with *args. That and other limitations is also why we don't have signatures for min() max() range() etc. -- nosy: +rhettinger resolutio

[issue39629] inspect.signature fails on math.hypot

2020-02-13 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue39629] inspect.signature fails on math.hypot

2020-02-13 Thread Eric Fahlgren
New submission from Eric Fahlgren : Python 3.8's new math.hypot function also appears to suffer from the same issue as math.log: >>> import math, inspect >>> inspect.signature(math.hypot) Traceback (most recent call last): File "", line 1, in File "C:\Program Files\Python38\lib\inspect.py