From: Jeong YunWon <69878+youknowone@users.noreply.github.com> Date: Fri, 8 Oct 2021 06:45:11 +0000 (+0900) Subject: bpo-45407: Remove outdated XXX comment from Struct___init___impl (GH-28805) X-Git-Tag: v3.11.0a2~273 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f7a94fd66e05ae040a67e32c397091fe5939ced;p=thirdparty%2FPython%2Fcpython.git bpo-45407: Remove outdated XXX comment from Struct___init___impl (GH-28805) --- diff --git a/Modules/_struct.c b/Modules/_struct.c index 872c30d659d8..69de080f4388 100644 --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -1475,7 +1475,6 @@ Struct___init___impl(PyStructObject *self, PyObject *format) if (format == NULL) return -1; } - /* XXX support buffer interface, too */ else { Py_INCREF(format); }