]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-104683: Argument clinic: use `dict` over `OrderedDict` (#104647)
authorAlex Waygood <Alex.Waygood@Gmail.com>
Sat, 20 May 2023 10:24:00 +0000 (11:24 +0100)
committerGitHub <noreply@github.com>
Sat, 20 May 2023 10:24:00 +0000 (11:24 +0100)
commit02b60035ceb735c3f7dd5bb7dc6a1508748a7a8d
tree5f23834dfd07e63b968b803509df9ea596783266
parent06eeee97e36aa6bb3d21d7cbc288763ae3a7b21e
gh-104683: Argument clinic: use `dict` over `OrderedDict` (#104647)

For code readability. Instances of `builtins.dict` have been ordered since 3.6, and have been guaranteed by the language to be ordered since Python 3.7. Argument Clinic now requires Python 3.10+.
Tools/clinic/clinic.py