From: SourceForge.net <no...@so...> - 2006-05-30 11:08:34
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756125 By: vbgunz Sorry I didn't post this earlier... - Ubuntu 6.06 - Eclipse version 3.1.2 - PyDev version 1.0.8 - No Errors... - whereis eclipse: /usr/bin/eclipse /etc/eclipse /usr/lib/eclipse /usr/bin/X11/eclipse /usr/local/lib/eclipse /usr/share/eclipse /usr/share/man/man1/eclipse.1.gz - whereis project: /home/vbgunz/eclipse-workspace/testbed ______________________________________________________________________ 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 |
From: SourceForge.net <no...@so...> - 2006-05-30 11:28:51
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756151 By: fabioz 1. There is bug in Eclipse that makes the output not show. It should be fixed in eclipse 3.2 (but this version is currently unsupported in pydev -- support should be added in the start of july) 2. You can add a feature request for that. 3. Actually, it should work... I think you meant: s = str s. or import string s = string s. both of those work for me If they don't you may have some misconfiguration... have you checked the getting started guide? -- http://www.fabioz.com/pydev/manual_101_root.html 4. These are calltips. They should be implemented soon as a part of Google's SoC 5. Pydev is Open Source, so if you're especially wanting one of those features, you can get the code and help in its development yourself... I can give you tips on where to start if you want. Aside from that, if you keep track of pydev, you'll see that it has consistently grown, in quality and in features over the last 2,5 years (it started in 06/2003), and is currently regarded by many as one of the best python ides available, and I see no reason why it wouldn't keep that way... Cheers, Fabio ______________________________________________________________________ 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 |
From: SourceForge.net <no...@so...> - 2006-05-30 14:54:12
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756409 By: vbgunz It is great to know the console bug will be fixed soon. As for the autocomplete menu not showing up in cases such as s = string, you're correct. It appears I first have to import string. I was just testing it but it is great to know that pydev actually does this. that's smart! One issue in regards to autocompletion is d = {}. if I enter 'd.' I will get an autocompletion list *but* it does not contain methods such as keys(), values(), iterkeys(), etc. It appears the list contains built-ins such as iter(), len(), range(), etc. I will post my feature request for including variables in the outline. I think this will help developers gain a quicker and better overview of the outline if these were included. I am not sure if I can help the project. I am no veteran in Python and it is the only real language I know. I am just looking for a Python IDE and of all the ones I've tried, eclipse with Pydev seems to so far be one of the best and most promising alternatives. I will take a good look at the starting guide. Thank you Fabio for your help and feedback on my questions. I hope to see Pydev grow bigger and better than it already is. Thank you again for your time and patience! ______________________________________________________________________ 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 |
From: SourceForge.net <no...@so...> - 2006-05-30 15:34:55
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756492 By: fabioz hummm... the d = {} is a bug... if you do: d = dict() d. it will get it correctly, or if you do {}. it will also be correct... Could you report that as a bug? Thanks, Fabio ______________________________________________________________________ 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 |