mirror of
https://github.com/davidhalter/jedi.git
synced 2026-02-25 16:57:14 +08:00
Remove a print statement.
This commit is contained in:
@@ -873,8 +873,7 @@ def create_index_types(evaluator, context, index):
|
|||||||
elif index.type == 'subscript' and not index.children[0] == '.':
|
elif index.type == 'subscript' and not index.children[0] == '.':
|
||||||
# subscript basically implies a slice operation, except for Python 2's
|
# subscript basically implies a slice operation, except for Python 2's
|
||||||
# Ellipsis.
|
# Ellipsis.
|
||||||
print(index.children)
|
# e.g. array[:3]
|
||||||
# Like array[:3]
|
|
||||||
result = []
|
result = []
|
||||||
for el in index.children:
|
for el in index.children:
|
||||||
if el == ':':
|
if el == ':':
|
||||||
|
|||||||
Reference in New Issue
Block a user