This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients mark.dickinson, vstinner
Date 2021-09-16.12:50:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1631796651.57.0.18278350482.issue45218@roundup.psfhosted.org>
In-reply-to
Content
The current Argument Clinic syntax for math.log() is:

--------------
/*[clinic input]
math.log

    x:    object
    [
    base: object(c_default="NULL") = math.e
    ]
    /

Return the logarithm of x to the given base.
(...)
--------------

math.log.__text_signature__ is None. __text_signature__ is used by inspect.signature().

I guess that it's a bug in Argument Clinic.
History
Date User Action Args
2021-09-16 12:50:51vstinnersetrecipients: + vstinner, mark.dickinson
2021-09-16 12:50:51vstinnersetmessageid: <1631796651.57.0.18278350482.issue45218@roundup.psfhosted.org>
2021-09-16 12:50:51vstinnerlinkissue45218 messages
2021-09-16 12:50:51vstinnercreate