Add c99 keywords to invalid name list
authorRobert Bradshaw <robertwb@math.washington.edu>
Thu, 2 Apr 2009 23:00:08 +0000 (16:00 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Thu, 2 Apr 2009 23:00:08 +0000 (16:00 -0700)
Cython/Compiler/Symtab.py

index 53e930579eaf76c1fc981a4553b717e8b604cf6d..885c9ad1c0bfdddec163fdb5934126b904a0455a 100644 (file)
@@ -23,16 +23,17 @@ except NameError:
 possible_identifier = re.compile(ur"(?![0-9])\w+$", re.U).match
 nice_identifier = re.compile('^[a-zA-Z0-0_]+$').match
 
-ansi_c_keywords = set(
+iso_c99_keywords = set(
 ['auto', 'break', 'case', 'char', 'const', 'continue', 'default', 'do', 
     'double', 'else', 'enum', 'extern', 'float', 'for', 'goto', 'if', 
     'int', 'long', 'register', 'return', 'short', 'signed', 'sizeof', 
     'static', 'struct', 'switch', 'typedef', 'union', 'unsigned', 'void', 
-    'volatile', 'while'])
+    'volatile', 'while',
+    '_Bool', '_Complex'', _Imaginary', 'inline', 'restrict'])
 
 def c_safe_identifier(cname):
     # There are some C limitations on struct entry names. 
-    if (cname[:2] == '__' and not cname.startswith(Naming.pyrex_prefix)) or cname in ansi_c_keywords:
+    if (cname[:2] == '__' and not cname.startswith(Naming.pyrex_prefix)) or cname in iso_c99_keywords:
         cname = Naming.pyrex_prefix + cname
     return cname