From: Mark Dickinson Date: Sun, 22 Aug 2021 12:13:26 +0000 (+0100) Subject: bpo-44978: allow Argument Clinic to handle __complex__ special methods (GH-27886) X-Git-Tag: v3.11.0a1~370 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5c3fbe2a16a8fcb77eb98eda53efb3e03b863ca;p=thirdparty%2FPython%2Fcpython.git bpo-44978: allow Argument Clinic to handle __complex__ special methods (GH-27886) --- 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 000000000000..c7a844c1230e --- /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 b52ac3b00de9..ed17fabf8d2a 100755 --- a/Tools/clinic/clinic.py +++ b/Tools/clinic/clinic.py @@ -2181,7 +2181,6 @@ __add__ __and__ __bytes__ __call__ -__complex__ __delitem__ __divmod__ __eq__