diff options
author | Jeong YunWon <69878+youknowone@users.noreply.github.com> | 2021-10-08 06:45:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-08 06:45:11 (GMT) |
commit | 9f7a94fd66e05ae040a67e32c397091fe5939ced (patch) | |
tree | 928f24a981c6ce4914a85bc02e47f524a9fe682e /Modules | |
parent | 392a89835371baa0fc4bf79ae479abb80661f57d (diff) | |
download | cpython-9f7a94fd66e05ae040a67e32c397091fe5939ced.zip cpython-9f7a94fd66e05ae040a67e32c397091fe5939ced.tar.gz cpython-9f7a94fd66e05ae040a67e32c397091fe5939ced.tar.bz2 |
bpo-45407: Remove outdated XXX comment from Struct___init___impl (GH-28805)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_struct.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_struct.c b/Modules/_struct.c index 872c30d..69de080 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); } |