From 0dafd857f0bae1038fb1055f77aae178054fd897 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Wed, 7 Oct 2009 21:40:48 -0700 Subject: [PATCH] Remove string semantics change warning. --- Cython/Compiler/ExprNodes.py | 1 - 1 file changed, 1 deletion(-) 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 -- 2.26.2