From: Serhiy Storchaka Date: Thu, 9 Dec 2021 18:44:36 +0000 (+0200) Subject: Remove an outdated comment. (GH-30010) X-Git-Tag: v3.11.0a4~243 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d8a464ef0380692975d73a3a1513d901b6af8e65;p=thirdparty%2FPython%2Fcpython.git Remove an outdated comment. (GH-30010) --- diff --git a/Tools/clinic/clinic.py b/Tools/clinic/clinic.py index f20fab61c4de..4b4ebb8313ad 100755 --- a/Tools/clinic/clinic.py +++ b/Tools/clinic/clinic.py @@ -2820,8 +2820,6 @@ class bool_converter(CConverter): def parse_arg(self, argname, displayname): if self.format_unit == 'i': - # XXX PyFloat_Check can be removed after the end of the - # deprecation in _PyLong_FromNbIndexOrNbInt. return """ {paramname} = _PyLong_AsInt({argname}); if ({paramname} == -1 && PyErr_Occurred()) {{{{