From: Robert Bradshaw Date: Thu, 11 Oct 2007 08:43:09 +0000 (-0700) Subject: New version X-Git-Tag: 0.9.6.14~29^2~121 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=997ac5b6569d642737d95e5810715c696ab8a2c4;p=cython.git New version --- diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index 4a234c8c..74e2efc7 100644 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -596,13 +596,11 @@ class CharNode(ConstNode): class IntNode(ConstNode): type = PyrexTypes.c_long_type - def analyse_types(self, env): - self.entry = env.get_py_num(self.value) - def coerce_to(self, dst_type, env): # Arrange for a Python version of the string to be pre-allocated # when coercing to a Python type. if dst_type.is_pyobject: + self.entry = env.get_py_num(self.value) self.type = PyrexTypes.py_object_type # We still need to perform normal coerce_to processing on the # result, because we might be coercing to an extension type, diff --git a/Cython/Compiler/Version.py b/Cython/Compiler/Version.py index a167c422..2375f04f 100644 --- a/Cython/Compiler/Version.py +++ b/Cython/Compiler/Version.py @@ -1 +1 @@ -version = '0.9.6.6' +version = '0.9.6.7'