diff --git a/core/cython_types.pyx b/core/cython_types.pyx index 8d91bc8..9d786d8 100644 --- a/core/cython_types.pyx +++ b/core/cython_types.pyx @@ -32,7 +32,7 @@ cdef class ndict(dict): # -------------------------------------------------- -cdef class map: +class map: ''' An ordered dict. ''' @@ -47,8 +47,6 @@ cdef class map: >>> map(((1, 2, 3, 4), ('a', 'b', 'c', 'd'))) ''' - print(repr(source)) - if source: self.keys, self.vals = zip(*source) else: