From 0eb31dcdfd1d963db8d22902042156d403a2fe02 Mon Sep 17 00:00:00 2001
From: Robert Bradshaw <robertwb@math.washington.edu>
Date: Thu, 22 Oct 2009 12:06:11 -0700
Subject: [PATCH] Remove backwards incompatable change to string identifiers.

---
 Cython/Compiler/ExprNodes.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py
index 1d93fdb1c..4c11d6664 100644
--- a/Cython/Compiler/ExprNodes.py
+++ b/Cython/Compiler/ExprNodes.py
@@ -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:
-- 
2.30.9