From 56bfad53ff242c1a2dc01bf007e019bbbda756d1 Mon Sep 17 00:00:00 2001 From: "brett.cannon" Date: Fri, 15 Jan 2010 01:31:45 +0000 Subject: [PATCH] Remove C++/C99-style comments. git-svn-id: http://svn.python.org/projects/python/trunk@77510 6015fed2-1504-0410-9fe1-9d1591cc4771 --- Python/_warnings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.11.4.GIT