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 terry.reedy
Recipients BreamoreBoy, gpolo, kbk, taleinat, terry.reedy
Date 2014-03-17.17:31:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395077464.68.0.208047235397.issue1350@psf.upfronthosting.co.za>
In-reply-to
Content
Calltips will be rewritten for 3.5, maybe 3.4 in #19903, to use inspect.signature. Once that is done, I would like to revisit this issue, as I agree that it would be useful, and it should be fairly easy. I though of being able to rightclick on the calltip box to ask for more but a key would be fine to start. The current code uses .__doc__ but only after checking that it exists.
    if isinstance(ob_call, types.MethodType):
        doc = ob_call.__doc__
    else:
        doc = getattr(ob, "__doc__", "")
    if doc:
I would not start this until the new code is in place.
History
Date User Action Args
2014-03-17 17:31:04terry.reedysetrecipients: + terry.reedy, kbk, taleinat, gpolo, BreamoreBoy
2014-03-17 17:31:04terry.reedysetmessageid: <1395077464.68.0.208047235397.issue1350@psf.upfronthosting.co.za>
2014-03-17 17:31:04terry.reedylinkissue1350 messages
2014-03-17 17:31:03terry.reedycreate