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:

  1. 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.

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

    ReplyDelete
  3. Anonymous2:01 PM

    Thank you for developing and maintaining pydev. Much appreciated!

    ReplyDelete
  4. Anonymous1:10 AM

    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

    ReplyDelete
  5. 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).

    ReplyDelete