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 yselivanov
Recipients larry, rhettinger, serhiy.storchaka, yselivanov
Date 2017-01-23.17:09:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1485191358.35.0.961129746686.issue29350@psf.upfronthosting.co.za>
In-reply-to
Content
Signature object provides methods like .bind(), which will be hard to define if a function has many signatures.  Also, inspect.signature currently returns one Signature object, that shouldn't be changed.

Wouldn't it be easier instead of this:
  type(obj)
  type(name, bases, mapping)

do this:
  type(obj_or_name, bases=None, mapping=None)

And explain what really is going on in the docstring?
History
Date User Action Args
2017-01-23 17:09:18yselivanovsetrecipients: + yselivanov, rhettinger, larry, serhiy.storchaka
2017-01-23 17:09:18yselivanovsetmessageid: <1485191358.35.0.961129746686.issue29350@psf.upfronthosting.co.za>
2017-01-23 17:09:18yselivanovlinkissue29350 messages
2017-01-23 17:09:18yselivanovcreate