Message326885
Thanks very much for the test.bisect hint! After some more trials, I guess it's an issue in the `inspect` module rather than the newly-added test in test_site. Here's an example script:
import inspect
import sys
import _testcapi
builtin = _testcapi.docstring_with_signature_with_defaults
spec = inspect.getfullargspec(builtin)
print(type(sys.modules['__builtins__']))
After inspect.getfullargspec(), sys.modules['__builtins__'] is a dict. That's a little bit strange as every other item in sys.modules is a module. |
|
Date |
User |
Action |
Args |
2018-10-02 16:05:35 | yan12125 | set | recipients:
+ yan12125, vstinner, methane, xtreak |
2018-10-02 16:05:35 | yan12125 | set | messageid: <1538496335.19.0.545547206417.issue34871@psf.upfronthosting.co.za> |
2018-10-02 16:05:35 | yan12125 | link | issue34871 messages |
2018-10-02 16:05:35 | yan12125 | create | |
|