From 9c71b06117784f4d7a2b2f61e1045d40e72ff3d8 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Mon, 19 Dec 2016 14:36:40 +0100 Subject: [PATCH] Removed deprecated TODOs --- python/obitools3/obidms/_obidmscolumn_str.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/obitools3/obidms/_obidmscolumn_str.pyx b/python/obitools3/obidms/_obidmscolumn_str.pyx index 1401141..87a7936 100644 --- a/python/obitools3/obidms/_obidmscolumn_str.pyx +++ b/python/obitools3/obidms/_obidmscolumn_str.pyx @@ -22,7 +22,7 @@ cdef class OBIDMS_column_str(OBIDMS_column): result = None else : result = bytes2str(value) - # NOTE: value is not freed because the pointer points to a mmapped region in an AVL data file. (TODO discuss) + # NOTE: value is not freed because the pointer points to a mmapped region in an AVL data file. return result cpdef set_line(self, index_t line_nb, object value): @@ -46,7 +46,7 @@ cdef class OBIDMS_column_multi_elts_str(OBIDMS_column_multi_elts): result = None else : result = bytes2str(value) - # NOTE: value is not freed because the pointer points to a mmapped region in an AVL data file. (TODO discuss) + # NOTE: value is not freed because the pointer points to a mmapped region in an AVL data file. return result cpdef object get_line(self, index_t line_nb) : @@ -65,7 +65,7 @@ cdef class OBIDMS_column_multi_elts_str(OBIDMS_column_multi_elts): value_in_result = None else : value_in_result = bytes2str(value) - # NOTE: value is not freed because the pointer points to a mmapped region in an AVL data file. (TODO discuss) + # NOTE: value is not freed because the pointer points to a mmapped region in an AVL data file. result[self.elements_names[i]] = value_in_result if all_NA and (value_in_result is not None) : all_NA = False