Remove backwards incompatable change to string identifiers.
authorRobert Bradshaw <robertwb@math.washington.edu>
Thu, 22 Oct 2009 19:06:11 +0000 (12:06 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Thu, 22 Oct 2009 19:06:11 +0000 (12:06 -0700)
Cython/Compiler/ExprNodes.py

index 1d93fdb1c600092e749c3164f001419122e6ece5..4c11d6664f68ad9c34ab13b9a019075bbb203378 100644 (file)
@@ -914,7 +914,7 @@ class StringNode(PyConstNode):
     # is_identifier  boolean
 
     type = str_type
-    is_identifier = False
+    is_identifier = None
 
     def coerce_to(self, dst_type, env):
         if dst_type is not py_object_type and dst_type is not str_type: