mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
complete keyword arguments also for implicitly resolved function calls (PY-5126)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
class C:
|
||||
def xyzzy(self, shazam):
|
||||
pass
|
||||
|
||||
|
||||
def foo(param):
|
||||
param.xyzzy(shazam=)
|
||||
@@ -0,0 +1,7 @@
|
||||
class C:
|
||||
def xyzzy(self, shazam):
|
||||
pass
|
||||
|
||||
|
||||
def foo(param):
|
||||
param.xyzzy(sh<caret>)
|
||||
@@ -500,6 +500,10 @@ public class PythonCompletionTest extends PyTestCase {
|
||||
doMultiFileTest();
|
||||
}
|
||||
|
||||
public void testKeywordArgumentsForImplicitCall() {
|
||||
doTest();
|
||||
}
|
||||
|
||||
public void testTypeMembers() { // PY-5311
|
||||
myFixture.configureByText(PythonFileType.INSTANCE, "a = 'string'\n" +
|
||||
"a.<caret>");
|
||||
|
||||
Reference in New Issue
Block a user