Author: martin.v.loewis
Date: Mon Oct 29 20:54:24 2007
New Revision: 58705

Modified:
   python/branches/py3k/Python/symtable.c
Log:
Bug #1356: Avoid using the C99 keyword 'restrict'.


Modified: python/branches/py3k/Python/symtable.c
==============================================================================
--- python/branches/py3k/Python/symtable.c      (original)
+++ python/branches/py3k/Python/symtable.c      Mon Oct 29 20:54:24 2007
@@ -465,12 +465,12 @@
    Note that the current block's free variables are included in free.
    That's safe because no name can be free and local in the same scope.
 
-   The 'restrict' argument may be set to a string to restrict the analysis
+   The 'restricted' argument may be set to a string to restrict the analysis
    to the one variable whose name equals that string (e.g. "__class__").
 */
 
 static int
-analyze_cells(PyObject *scopes, PyObject *free, const char *restrict)
+analyze_cells(PyObject *scopes, PyObject *free, const char *restricted)
 {
         PyObject *name, *v, *v_cell;
        int success = 0;
@@ -487,8 +487,8 @@
                        continue;
                if (!PySet_Contains(free, name))
                        continue;
-               if (restrict != NULL &&
-                    PyUnicode_CompareWithASCIIString(name, restrict))
+               if (restricted != NULL &&
+                    PyUnicode_CompareWithASCIIString(name, restricted))
                        continue;
                /* Replace LOCAL with CELL for this name, and remove
                   from free. It is safe to replace the value of name 
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to