Change by Jens Reidel :
--
keywords: +patch
pull_requests: +18335
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/18988
___
Python tracker
<https://bugs.python.org/issu
Jens Reidel added the comment:
Just to show the types are inequal:
Without patch file:
>>> inspect.signature(lambda x: None).parameters
mappingproxy({'x': })
With patch file:
>>> inspect.signature(lambda x: None).parameters
m
Change by Jens Reidel :
--
title: bpo39775 not fixed - inspect.Signature.parameters still
dict/mappingproxy -> bpo39775 not fixed - inspect.Signature.parameters still
dict/mappingproxy around dict
___
Python tracker
<https://bugs.pyth
New submission from Jens Reidel :
Hi guys,
compiling CPython from the master branch will result in a git history with the
commit
https://github.com/python/cpython/commit/211055176157545ce98e6c02b09d624719e6dd30
included and in Lib/inspect.py, however the return type is still like before