diff --git a/core/cython_types.pyx b/core/cython_types.pyx index 6c843ab..a0fe419 100644 --- a/core/cython_types.pyx +++ b/core/cython_types.pyx @@ -1,4 +1,4 @@ -#! /bin/env python3 +#! /usr/bin/env python3 # encoding: utf-8 # -------------------------------------------------- diff --git a/core/python_types.py b/core/python_types.py index 3dbd001..3fdd7ed 100644 --- a/core/python_types.py +++ b/core/python_types.py @@ -46,7 +46,7 @@ class map: >>> map(((1, 2, 3, 4), ('a', 'b', 'c', 'd'))) ''' - print(repr(source)) + #print(repr(source)) if source: self.keys, self.vals = zip(*source)