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 larry, terry.reedy, yselivanov
Date 2014-01-27.03:47:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390794461.32.0.659396040798.issue20401@psf.upfronthosting.co.za>
In-reply-to
Content
There does not appear to be a test for this. If so, this case may not have ever worked right. Here is the only failure at the moment (which should also be fixed).

F:\Python\dev>4\py34\pcbuild\python_d.exe -m test test_inspect
[1/1] test_inspect
test test_inspect failed -- Traceback (most recent call last):
  File "F:\Python\dev\4\py34\lib\test\test_inspect.py", line 1623, in test_signature_on_builtins
    test_callable(type)
  File "F:\Python\dev\4\py34\lib\test\test_inspect.py", line 1604, in test_callable
    signature = inspect.signature(o)
  File "F:\Python\dev\4\py34\lib\inspect.py", line 1555, in signature
    raise ValueError('callable {!r} is not supported by signature'.format(obj))
ValueError: callable <class 'type'> is not supported by signature
History
Date User Action Args
2014-01-27 03:47:41terry.reedysetrecipients: + terry.reedy, larry, yselivanov
2014-01-27 03:47:41terry.reedysetmessageid: <1390794461.32.0.659396040798.issue20401@psf.upfronthosting.co.za>
2014-01-27 03:47:41terry.reedylinkissue20401 messages
2014-01-27 03:47:40terry.reedycreate