Yury Selivanov added the comment:

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?

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue29350>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to