diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2021-08-22 12:13:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-22 12:13:26 (GMT) |
commit | c5c3fbe2a16a8fcb77eb98eda53efb3e03b863ca (patch) | |
tree | 4a23b2dadeb95a80a28adfbb8b0cd252cdab9573 | |
parent | a9640d75531d6cbbfd254b65435f238c26bf5cd9 (diff) | |
download | cpython-c5c3fbe2a16a8fcb77eb98eda53efb3e03b863ca.zip cpython-c5c3fbe2a16a8fcb77eb98eda53efb3e03b863ca.tar.gz cpython-c5c3fbe2a16a8fcb77eb98eda53efb3e03b863ca.tar.bz2 |
bpo-44978: allow Argument Clinic to handle __complex__ special methods (GH-27886)
-rw-r--r-- | Misc/NEWS.d/next/Tools-Demos/2021-08-22-11-45-31.bpo-44978.QupKV3.rst | 1 | ||||
-rwxr-xr-x | Tools/clinic/clinic.py | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/Tools-Demos/2021-08-22-11-45-31.bpo-44978.QupKV3.rst b/Misc/NEWS.d/next/Tools-Demos/2021-08-22-11-45-31.bpo-44978.QupKV3.rst new file mode 100644 index 0000000..c7a844c --- /dev/null +++ b/Misc/NEWS.d/next/Tools-Demos/2021-08-22-11-45-31.bpo-44978.QupKV3.rst @@ -0,0 +1 @@ +Allow the Argument Clinic tool to handle ``__complex__`` special methods. diff --git a/Tools/clinic/clinic.py b/Tools/clinic/clinic.py index b52ac3b..ed17fab 100755 --- a/Tools/clinic/clinic.py +++ b/Tools/clinic/clinic.py @@ -2181,7 +2181,6 @@ __add__ __and__ __bytes__ __call__ -__complex__ __delitem__ __divmod__ __eq__ |