forked from VimPlug/jedi
Fix python 2 string iterators.
This commit is contained in:
@@ -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():
|
||||
|
||||
Reference in New Issue
Block a user