pythonedit for netbeans 6.1 - plugin detail
Minimal Language support for Netbeans 6.1. This version only supports syntax highlightning code folding and a project template.
No debugging.
Verifications for NetBeans versions
Decisions of individual verifiers for pythonedit for netbeans 6.1 plugin for NetBeans IDE 6.0
Comments
|
Introduction
Minimal Language support for Netbeans 6.1. No debugging.
This plugin was developed in Netbeans 6.1 following tutorials, so do not expect awesome features as seen on JpyDbg. Use this only if you have problems using JpyDgb on Netbeans 6.
What's new in this version
Project template and some grammar fixes.
|
[ You have to be logged in to be able to comment. ]
User Comments
Obsolete
I can gladly announce this plugin is obsolete. Netbeans will have full support for python really soon. An early access version is already available at http://download.netbeans.org/netbeans/6.5/python/ea/ .
Enjoy :)
Posted by th3pr0ph3t on Nov 23, 2008
Some bugs...
There's some code that is correct in Python / Jython but the IDE says it's wrong. For example:
import time
time.time(
)
This code should be OK, but for the IDE to work you have to write:
import time
time.time( \
)
Passing a tuple or a list to a method is not working properly, for example:
do_things( ('first', 'second', 'third') )
gives you a "missing ')'" error, where it shouldn't, and:
arg = ('first', 'second', 'third')
do_things( arg )
makes it work. Same thing goes for lists.
Regards.
Posted by redent on Sep 05, 2008
Source code is available...
The source code is available here:
http://sourceforge.net/projects/pythonnetbeans6/
And yes, jbfaden, I'd like to join.
Posted by th3pr0ph3t on May 03, 2008
group effort?
We're working on this too. Want to make this a group effort? I was able to look at your .nbs file by drilling down into the nbm, but is your source code available?
Posted by jbfaden on May 02, 2008