summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-11-06 23:53:56 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-11-06 23:53:56 (GMT)
commit79ed4c744a0dc67941f539b3a7883dfe80ca24e8 (patch)
tree30489286f122bdea252eb04ca06e0eee4cf58812
parent53e9ec48e53840d2af24d7262908e6fc9837e856 (diff)
downloadcpython-79ed4c744a0dc67941f539b3a7883dfe80ca24e8.zip
cpython-79ed4c744a0dc67941f539b3a7883dfe80ca24e8.tar.gz
cpython-79ed4c744a0dc67941f539b3a7883dfe80ca24e8.tar.bz2
remove an outdated comment
The comment is meaningless since changeset 4e985a96a612.
-rw-r--r--Python/getargs.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/getargs.c b/Python/getargs.c
index 9d72752..f313a37 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -1590,7 +1590,6 @@ vgetargskeywords(PyObject *args, PyObject *keywords, const char *format,
"keywords must be strings");
return cleanreturn(0, &freelist);
}
- /* check that _PyUnicode_AsString() result is not NULL */
for (i = 0; i < len; i++) {
if (!PyUnicode_CompareWithASCIIString(key, kwlist[i])) {
match = 1;