1
0
forked from VimPlug/jedi

Fix python 2 string iterators.

This commit is contained in:
Dave Halter
2016-12-03 02:08:40 +01:00
parent ba8a3215f2
commit da1a163da7
4 changed files with 21 additions and 2 deletions
+5
View File
@@ -256,6 +256,11 @@ class str():
def __init__(self, obj):
pass
def strip(self):
return str()
def split(self):
return [str()]
class type():
def mro():