1
0
forked from VimPlug/jedi

Make the order of overloaded functions correct

This commit is contained in:
Dave Halter
2019-08-30 01:11:11 +02:00
parent 04bc9eb62c
commit 286d2c9b1a
5 changed files with 17 additions and 6 deletions

View File

@@ -127,7 +127,8 @@ class FunctionValue(use_metaclass(CachedMetaClass, FunctionMixin, FunctionAndCla
if overloaded_funcs:
return OverloadedFunctionValue(
function,
[create(f) for f in overloaded_funcs]
# Get them into the correct order: lower line first.
list(reversed([create(f) for f in overloaded_funcs]))
)
return function