From: Victor Stinner Date: Wed, 6 Nov 2013 23:53:56 +0000 (+0100) Subject: remove an outdated comment X-Git-Tag: v3.4.0b1~356 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=79ed4c744a0dc67941f539b3a7883dfe80ca24e8;p=thirdparty%2FPython%2Fcpython.git remove an outdated comment The comment is meaningless since changeset 4e985a96a612. --- diff --git a/Python/getargs.c b/Python/getargs.c index 9d727523201d..f313a37938f7 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;