Remove string semantics change warning.
authorRobert Bradshaw <robertwb@math.washington.edu>
Thu, 8 Oct 2009 04:40:48 +0000 (21:40 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Thu, 8 Oct 2009 04:40:48 +0000 (21:40 -0700)
Cython/Compiler/ExprNodes.py

index 6c918eb613f1bc628a30bd389ea1b918b30520ea..182e7483194b173cbd1b8076acadadaff4690b91 100644 (file)
@@ -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