From: Robert Bradshaw Date: Thu, 8 Oct 2009 04:40:48 +0000 (-0700) Subject: Remove string semantics change warning. X-Git-Tag: 0.13.beta0~2^2~121^2~99^2~4 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=0dafd857f0bae1038fb1055f77aae178054fd897;p=cython.git Remove string semantics change warning. --- diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index 6c918eb6..182e7483 100644 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -802,7 +802,6 @@ class StringNode(ConstNode): # Arrange for a Python version of the string to be pre-allocated # when coercing to a Python type. if dst_type.is_pyobject and not self.type.is_pyobject: - warn_once(self.pos, "String literals will no longer be Py3 bytes in Cython 0.12.", 1) node = self.as_py_string_node(env) else: node = self