1
0
forked from VimPlug/jedi

Fix crazier subscript operations

This commit is contained in:
Dave Halter
2019-05-28 10:20:06 +02:00
parent b39928188f
commit 0cc7ea9bc9
2 changed files with 14 additions and 2 deletions

View File

@@ -47,6 +47,14 @@ b[:]
#? int()
b[:, 1]
#? int()
b[:1, 1]
#? int()
b[1:1, 1]
#? int()
b[1:1:, ...]
#? int()
b[1:1:5, ...]
class _StrangeSlice():
def __getitem__(self, sliced):