From: Robert Bradshaw Date: Thu, 22 Oct 2009 19:06:11 +0000 (-0700) Subject: Remove backwards incompatable change to string identifiers. X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=0eb31dcdfd1d963db8d22902042156d403a2fe02;p=cython.git Remove backwards incompatable change to string identifiers. --- diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index 1d93fdb1..4c11d666 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: