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 belopolsky, vstinner
Date 2012-10-15.23:57:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350345474.67.0.524741909476.issue16243@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like a typo in your code. You should use instead:
formatargspec(*getargspec(f))

Or better:
formatargspec(*getfullargspec(f))

Try with:
def f(a: int, b: float): pass
History
Date User Action Args
2012-10-15 23:57:54vstinnersetrecipients: + vstinner, belopolsky
2012-10-15 23:57:54vstinnersetmessageid: <1350345474.67.0.524741909476.issue16243@psf.upfronthosting.co.za>
2012-10-15 23:57:54vstinnerlinkissue16243 messages
2012-10-15 23:57:54vstinnercreate