diff options
author | Rémi Lapeyre <remi.lapeyre@henki.fr> | 2020-01-28 12:47:03 (GMT) |
---|---|---|
committer | Inada Naoki <songofacandy@gmail.com> | 2020-01-28 12:47:03 (GMT) |
commit | 2cca8efe46935c39c445f585bce54954fad2485b (patch) | |
tree | f1742035d30478e763ef671189e66fbb64381049 /Misc | |
parent | 0be3246d4f9c8eddcd55491901d95b09fe163f15 (diff) | |
download | cpython-2cca8efe46935c39c445f585bce54954fad2485b.zip cpython-2cca8efe46935c39c445f585bce54954fad2485b.tar.gz cpython-2cca8efe46935c39c445f585bce54954fad2485b.tar.bz2 |
bpo-36350: inspect: Replace OrderedDict with dict. (GH-12412)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-03-18-16-17-59.bpo-36350.udRSWE.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-03-18-16-17-59.bpo-36350.udRSWE.rst b/Misc/NEWS.d/next/Library/2019-03-18-16-17-59.bpo-36350.udRSWE.rst new file mode 100644 index 0000000..43363fc --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-03-18-16-17-59.bpo-36350.udRSWE.rst @@ -0,0 +1,2 @@ +`inspect.Signature.parameters` and `inspect.BoundArguments.arguments` are +now dicts instead of OrderedDicts. Patch contributed by Rémi Lapeyre. |