From b8ea263c692d6334711bcd2628e7e7cdc900d4e7 Mon Sep 17 00:00:00 2001 From: Overwatch Date: Mon, 17 Nov 2014 14:09:45 +0100 Subject: [PATCH] fixed over.core.cython_types.map --- core/cython_types.pyx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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: