From 997ac5b6569d642737d95e5810715c696ab8a2c4 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 11 Oct 2007 01:43:09 -0700 Subject: [PATCH] New version --- Cython/Compiler/ExprNodes.py | 4 +--- Cython/Compiler/Version.py | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) 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' -- 2.26.2