From: Brett Cannon Date: Fri, 15 Jan 2010 01:31:45 +0000 (+0000) Subject: Remove C++/C99-style comments. X-Git-Tag: v2.7a3~149 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0bc77474aa37b1275c06fa806a59c68acc0eabc7;p=python Remove C++/C99-style comments. --- diff --git a/Python/_warnings.c b/Python/_warnings.c index f3b2286e69..bddd44cec6 100644 --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -839,9 +839,9 @@ create_filter(PyObject *category, const char *action) static PyObject * init_filters(void) { - // Don't silence DeprecationWarning if -3 was used. + /* Don't silence DeprecationWarning if -3 was used. */ PyObject *filters = PyList_New(Py_Py3kWarningFlag ? 3 : 4); - unsigned int pos = 0; // Post-incremented in each use. + unsigned int pos = 0; /* Post-incremented in each use. */ unsigned int x; const char *bytes_action;