Tuesday, October 05, 2010

Pydev 1.6.3 released

Yes, Pydev 1.6.3 is out.

This is mostly a bug fix release, but there are still some noteworthy things, such as new icons, a better editor preferences explaining how to properly configure the themes when using Aptana themes and an improved code-completion for keywords.

See the full details at http://pydev.org/

Enjoy!

6 comments:

Steve Wedig said...

Thanks Fabio

Ciantic said...

Hi!

Do you know when will this update trickle to the Aptana Studio 3 update site (integrated PyDev)?

Alternatively, can I disable the integrated PyDev and install the extension to this? I really like to keep my env up to date.

Thanks.

Fabio Zadrozny said...

I believe a new release of Aptana Studio 3 should be available today or tomorrow.

Anonymous said...

Thank you for developing and maintaining pydev. Much appreciated!

Anonymous said...

There's a problem with the print function in Python 3 with PyDev
Example:

print ("A program to add up some ages")

name = input("What is your name? ")

age1 = int(input("How old are you? "))
age2 = int(input("How old is your partner? "))

print ("Between you,",name,", you are",age1+age2,"years old")

It's supposed to generate
Between you, Name , you are 20 years old

But it keeps printing
Between you, Name
, you are 20 years old

Fabio Zadrozny said...

You're right, I've just fixed that (so, it'll be correct for pydev 1.6.4). I'm already pushing a new nightly with that fixed (so, it should be ok to get the new nightly in about 5 minutes if you want that fixed).