diff options
author | Inada Naoki <songofacandy@gmail.com> | 2020-03-02 09:54:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-02 09:54:48 (GMT) |
commit | 211055176157545ce98e6c02b09d624719e6dd30 (patch) | |
tree | a5727a736333dd62017bfcaa5ed57b6c1f2336eb /Misc/NEWS.d | |
parent | 9f1cb1bb49476246de5d9ed5fe680301cf7f7571 (diff) | |
download | cpython-211055176157545ce98e6c02b09d624719e6dd30.zip cpython-211055176157545ce98e6c02b09d624719e6dd30.tar.gz cpython-211055176157545ce98e6c02b09d624719e6dd30.tar.bz2 |
bpo-39775: inspect: Change Signature.parameters back to OrderedDict. (GH-18684)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-02-28-16-42-16.bpo-39775.IuSvVb.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-02-28-16-42-16.bpo-39775.IuSvVb.rst b/Misc/NEWS.d/next/Library/2020-02-28-16-42-16.bpo-39775.IuSvVb.rst new file mode 100644 index 0000000..1667b43 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-02-28-16-42-16.bpo-39775.IuSvVb.rst @@ -0,0 +1,2 @@ +Change ``inspect.Signature.parameters`` back to ``collections.OrderedDict``. +This was changed to ``dict`` in Python 3.9.0a4. |