summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRémi Lapeyre <remi.lapeyre@henki.fr>2020-01-28 12:47:03 (GMT)
committerInada Naoki <songofacandy@gmail.com>2020-01-28 12:47:03 (GMT)
commit2cca8efe46935c39c445f585bce54954fad2485b (patch)
treef1742035d30478e763ef671189e66fbb64381049 /Misc
parent0be3246d4f9c8eddcd55491901d95b09fe163f15 (diff)
downloadcpython-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.rst2
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.