Remove a print statement.

This commit is contained in:
Dave Halter
2017-07-16 22:16:13 +02:00
parent 7e4504efbd
commit 8d6732c28c

View File

@@ -873,8 +873,7 @@ def create_index_types(evaluator, context, index):
elif index.type == 'subscript' and not index.children[0] == '.':
# subscript basically implies a slice operation, except for Python 2's
# Ellipsis.
print(index.children)
# Like array[:3]
# e.g. array[:3]
result = []
for el in index.children:
if el == ':':