fixed over.core.cython_types.map
This commit is contained in:
parent
1cf3508e9a
commit
b8ea263c69
1 changed files with 1 additions and 3 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue