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 serhiy.storchaka
Recipients barry, jkloth, larry, ncoghlan, serhiy.storchaka
Date 2014-01-06.21:04:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472485.67sFbGPdFy@raxxla>
In-reply-to <1389039835.92.0.703506930327.issue20144@psf.upfronthosting.co.za>
Content
I proposed contrary approach. Allow docstring to fake signature.

    >>> import sys
    >>> import inspect
    >>> def foo(blah=sys.maxsize):
            "foo(blah=sys.maxsize)"
            pass
    ... 
    >>> str(inspect.signature(foo))
    '(blah=sys.maxsize)'
History
Date User Action Args
2014-01-06 21:04:12serhiy.storchakasetrecipients: + serhiy.storchaka, barry, ncoghlan, larry, jkloth
2014-01-06 21:04:12serhiy.storchakalinkissue20144 messages
2014-01-06 21:04:12serhiy.storchakacreate