vote up 4 vote down star
3

I recently saw an announcement and article outlining the release of the first Python 3.0 release candidate. I was wondering whether there were any commercial, free, open source etc. IDE's that support its syntax.

flag

8 Answers

vote up 6 vote down check

Python 3 is just not that different from Python 2.x. In terms of syntax per se, things that will actually need to be handled differently by the parser, the only major change is in the replacement of the print statement with the print function.

Most of the features of Python can be easily probed via introspection (online help, method completion, function signatures, etc.), so there's no reason why any Python IDE will require major changes to work with Python 3.0. I expect IDLE and SPE and the other open-source IDEs will be support it before the final release.

link|flag
vote up 1 vote down

Can get PyDev. from http://pydev.sourceforge.net. Its a plugin for Eclipse and is more than handy. Not to mention benefits of the old and trusted Eclipse.

link|flag
Does pydev support python 3? I couldn't find any info on this. – paxdiablo Oct 16 '08 at 11:09
vote up -1 vote down

How about Komodo?

link|flag
Nope. A year on and Komodo still doesn't have a date for Python 3 support. See later comments at community.activestate.com/forum/troubles-python-30/… – Scott Griffiths Nov 18 at 14:31
vote up 5 vote down

Komodo 5 beta 1 was released in October 2008 and has initial support for Python 3 but I don't think I'd be using it for production code yet.

Given that Python 3 is still a very early release candidate, you may have some trouble finding mature support in IDEs.

link|flag
I've used Komodo 5 with Python 3 code and it worked perfectly. – musicfreak Jul 12 at 2:07
A lot may have changed since Oct 2008 when I answered this question - Python 3.0 is an ex-release and 3.1 is the latest. I'd be surprised if the support hadn't improved at least a little bit :-) – paxdiablo Jul 12 at 10:59
I'm using the latest Komodo IDE (5.2.2) and it still doesn't have anything close to decent Python 3 support. See for example the defect: bugs.activestate.com/show_bug.cgi?id=79326 – Scott Griffiths Nov 18 at 14:22
vote up 1 vote down

Emacs + python.el continues to be better than anything else I've tried.

link|flag
vote up 0 vote down

I can say that at the time of posting this (Apr. 28 2009, version 0.8.4h) that SPE does not correctly handle some python3 syntax - specifically exception handling. For example, the follow code is flagged as an error (and irritatingly, is jumped to whenever the file is saved):

except urllib.error.URLError as e:
        if hasattr(e, 'reason'):
        #...
link|flag
vote up 1 vote down

Pyscripter is the PERFECT Python IDE on windows; it's compatible even with the newly released Python 3.1.

link|flag
1  
Perfect is very subjective. ;) – musicfreak Jul 12 at 2:35
Not perfect for me, but better than all the others I've tried. – Dave Berk Sep 30 at 12:01
vote up 1 vote down

PyDev for Eclipse does support 3.0 (http://pydev.sourceforge.net). You can configure multiple interpreters in the plug-in settings.

In the project properties you can set:

  • Project type (Python, Jython, IronPython)
  • Grammar version (2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 3.0).

(PyDev version at time of writing: 1.4.7.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.