1
0
forked from VimPlug/jedi

Refactor dict/set/list/tuple literal generic inferring

This commit is contained in:
Dave Halter
2018-09-27 00:01:35 +02:00
parent b5b0214c3c
commit 8e8271cf54
4 changed files with 28 additions and 10 deletions

View File

@@ -292,8 +292,8 @@ class FunctionExecutionContext(TreeContext):
if debug.enable_notice:
signature = parser_utils.get_call_signature(self.tree_node)
if matches:
debug.dbg("Overloading match: %s@%s",
signature, self.tree_node.start_pos[0], color='BLUE')
debug.dbg("Overloading match: %s@%s (%s)",
signature, self.tree_node.start_pos[0], self.var_args, color='BLUE')
else:
debug.dbg("Overloading no match: %s@%s (%s)",
signature, self.tree_node.start_pos[0], self.var_args, color='BLUE')