[Python-checkins] r42242 - python/trunk/Python/ast.c

neal.norwitz python-checkins at python.org
Sun Feb 5 03:07:20 CET 2006


Author: neal.norwitz
Date: Sun Feb  5 03:07:19 2006
New Revision: 42242

Modified:
   python/trunk/Python/ast.c
Log:
Use C-style comment

Modified: python/trunk/Python/ast.c
==============================================================================
--- python/trunk/Python/ast.c	(original)
+++ python/trunk/Python/ast.c	Sun Feb  5 03:07:19 2006
@@ -1808,7 +1808,7 @@
 
         if (!expr1)
             return NULL;
-        // TODO(jhylton): Figure out why set_context() can't be used here.
+        /* TODO(jhylton): Figure out why set_context() can't be used here. */
         switch (expr1->kind) {
             case GeneratorExp_kind:
                 ast_error(ch, "augmented assignment to generator "


More information about the Python-checkins mailing list