Remove C++/C99-style comments.

This commit is contained in:
Brett Cannon 2010-01-15 01:31:45 +00:00
parent c391ad007b
commit 0bc77474aa
1 changed files with 2 additions and 2 deletions

View File

@ -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;