From 6f27734d71fd30ef0e920bc33371e8f62e0033c2 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Tue, 27 Nov 2018 16:14:56 +0100 Subject: [PATCH] Cython: fxed a bug in INT tuple columns where values were converted to double instead of int --- python/obitools3/dms/column/typed_column/int.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/obitools3/dms/column/typed_column/int.pyx b/python/obitools3/dms/column/typed_column/int.pyx index 05c5d1b..1fcbf21 100755 --- a/python/obitools3/dms/column/typed_column/int.pyx +++ b/python/obitools3/dms/column/typed_column/int.pyx @@ -134,7 +134,7 @@ cdef class Column_tuples_int(Column): cpdef object get_line(self, index_t line_nb) : global obi_errno cdef obiint_t value - cdef double value_in_result + cdef int value_in_result cdef object result cdef int32_t i cdef obiint_t* array