[Python-checkins] r77510 - python/trunk/Python/_warnings.c

brett.cannon python-checkins at python.org
Fri Jan 15 02:31:45 CET 2010


Author: brett.cannon
Date: Fri Jan 15 02:31:45 2010
New Revision: 77510

Log:
Remove C++/C99-style comments.

Modified:
   python/trunk/Python/_warnings.c

Modified: python/trunk/Python/_warnings.c
==============================================================================
--- python/trunk/Python/_warnings.c	(original)
+++ python/trunk/Python/_warnings.c	Fri Jan 15 02:31:45 2010
@@ -839,9 +839,9 @@
 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;
 


More information about the Python-checkins mailing list