1
0
forked from VimPlug/jedi

fix a few more minor issues

This commit is contained in:
Dave Halter
2014-01-11 16:14:58 +01:00
parent c6a14a348e
commit d430ef53a7
4 changed files with 4 additions and 8 deletions
+1 -1
View File
@@ -228,7 +228,7 @@ def _check_array_additions(evaluator, compare_array, module, is_list):
>>> a = [""]
>>> a.append(1)
"""
if not settings.dynamic_array_additions or module.is_builtin():
if not settings.dynamic_array_additions or isinstance(module, compiled.PyObject):
return []
def check_calls(calls, add_name):