Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4233198
By: brenfrey

Hi, first off, great job! This plugin is fantastic!

I am having a strange issue, that I have isolated to creation of multiline 
function
calls. I am using version 1.3.1.

Let me give the example test case:

Make a package called "pack1"
under pack1, create a file called: MyValues.py with contents:
VALUE1 = "1"
VALUE2 = "2"
VALUE3 = "3"

now create another file at the top level (not under the package) called test.py
with contents:

from pack1 import *

def testmethod(var1, var2='test', action='test1'):
    pass
    
def execute():
    testmethod(1000, var2=MyValues.)

As soon as I type the "." on MyValues, I get a nice popup with VALUE1, VALUE2,
VALUE3, as I expect.

But instead if the code looks like:

def execute():
    testmethod(1000, 
               var2=MyValues.)

Just simply moving the line down, the "." does not return anything at all.

Sorry if this is already reported somewhere, but please point me towards the
issue to watch if so.

Thanks again for your hard work!

    



______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=293649

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Pydev-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to