diff options
author | Brett Cannon <bcannon@gmail.com> | 2010-01-15 01:31:45 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2010-01-15 01:31:45 (GMT) |
commit | 0bc77474aa37b1275c06fa806a59c68acc0eabc7 (patch) | |
tree | be672eab1ea26af5acc51acd1ccf5cf10ec5bb3e /Python | |
parent | c391ad007b13ad781ab19c522168e86313706804 (diff) | |
download | cpython-0bc77474aa37b1275c06fa806a59c68acc0eabc7.zip cpython-0bc77474aa37b1275c06fa806a59c68acc0eabc7.tar.gz cpython-0bc77474aa37b1275c06fa806a59c68acc0eabc7.tar.bz2 |
Remove C++/C99-style comments.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/_warnings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/_warnings.c b/Python/_warnings.c index f3b2286..bddd44c 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; |