1
0
forked from VimPlug/jedi

json.load[s] shouldn't return any results. fixed by overwriting the method

This commit is contained in:
Dave Halter
2014-06-27 11:56:40 +02:00
parent cf1fd691da
commit 7d73e571bb
2 changed files with 17 additions and 4 deletions

View File

@@ -124,4 +124,8 @@ _implemented = {
'copy': _return_first_param,
'deepcopy': _return_first_param,
},
'json': {
'load': lambda *args: [],
'loads': lambda *args: [],
},
}