interpreter fix, removed stray debug print

This commit is contained in:
Martinez 2015-06-09 21:07:54 +02:00
parent dcfa51cd00
commit 853b252f2b
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
# -------------------------------------------------- # --------------------------------------------------

View file

@ -46,7 +46,7 @@ class map:
>>> map(((1, 2, 3, 4), ('a', 'b', 'c', 'd'))) >>> map(((1, 2, 3, 4), ('a', 'b', 'c', 'd')))
''' '''
print(repr(source)) #print(repr(source))
if source: if source:
self.keys, self.vals = zip(*source) self.keys, self.vals = zip(*source)