From 853b252f2b3d3896f7cdc4ed13f55641e484aaef Mon Sep 17 00:00:00 2001 From: Martinez Date: Tue, 9 Jun 2015 21:07:54 +0200 Subject: [PATCH] interpreter fix, removed stray debug print --- core/cython_types.pyx | 2 +- core/python_types.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)