Pydev 1.6.5 Released

2011-02-04 Thread Fabio Zadrozny
Hi All,

Pydev 1.6.5 has been released

Details on Pydev: http://pydev.org
Details on its development: http://pydev.blogspot.com

Release Highlights:
---

 * Syntax highlighting now has options to have {}, [] and () as well
as operators in different colors

 * Code generation for classes and methods:

 Note that this is an initial implementation of the idea, aimed as
those that use a TDD (Test Driven Development) approach,
 so, one can create the test first and generate the
classes/methods later on from using shortcuts or quick-fixes (which is
 something that those using JDT -- Java Development Tools -- in
Eclipse should be already familiar with). This feature
 should be already usable on a number of situations but it's still
far from being 100% complete.

 * Alt+Shift+S C can be used to create a class for the currently
selected token
 * Alt+Shift+S M can be used to create a method for the currently
selected token
 * Ctrl+1 has as a quick fix for creating a class or method

 * Debugger
 * When discovering encoding on Python 3.x, the file is opened as binary
 * Remote debugger (pydevd.settrace()) properly synchronized
 * Fixed debugger issue on interpreter shutdown on Python 2.7

 * Bug fixes:
 * Fixed issue when doing code-completion on a line that started
with some token that started with 'import'. e.g.: import_foo = a
 * Fixed import when running unittest with coverage
 * Fixed extract local (could extract to wrong location)
 * Fixed NPE when requesting print of arguments in the
context-information tooltips
 * Fixed AttributeError with pydevconsole on Python 3.x


What is PyDev?
---

PyDev is a plugin that enables users to use Eclipse for Python, Jython
and IronPython development -- making Eclipse a first class Python IDE
-- It comes with many goodies such as code completion, syntax
highlighting, syntax analysis, refactor, debug and many others.


Cheers,

-- 
Fabio Zadrozny
--
Software Developer

Aptana
http://aptana.com/

Pydev - Python Development Environment for Eclipse
http://pydev.org
http://pydev.blogspot.com
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


pyCologne Python User Group Cologne - Meeting, February 9, 2011, 6.30pm

2011-02-04 Thread Andi Albrecht
The next meeting of pyCologne will take place:

Wednesday, February, 9th
starting about 6.30 pm - 6.45 pm
at Room 0.14, Benutzerrechenzentrum (RRZK-B)
University of Cologne, Berrenrather Str. 136, 50937 Köln, Germany

On this months schedule:

 - What's New in MoinMoin 2.0 (Reimar Bauer)
 - PythonCamp planning

Any presentations, news, book presentations etc. are welcome
on each of our meetings!

At about 8.30 pm we will as usual enjoy the rest of the evening in a
nearby restaurant.

Further information including directions how to get to the location
can be found at:

http://www.pycologne.de


(Sorry, the web-links are in German only.)

Regards,

Andi
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


JSONBOT 0.6.1 RELEASED

2011-02-04 Thread Bart Thate
Hello every human out there !

i'm pleased to announce the release of JSONBOT 0.6.1 FINAL, a release
that saw a lot of work into the shell side of things and no changes to
GAE.

0.6.1 has the following changes:

* the ! char is not used instead of | in a pipeline. This is to make
it easier to use a pipeline on mobile phones.

* a new commandline interface has been created. You can now do jsb
botcommand  .. no need to start up the console app when you have a
single command to execute

* ? is now used a query character, so things you learn the bot with !
learn can be queried with ?

* auto_register and guestasuser config options are now disabled by
default

* core xmpp parsing code has been rewritten

* many more bug fixes.

You can grab a copy of the code (tarball or mercurial repo) at
http://jsonbot.googlecode.com

Hope you enjoy this release as much as i enjoyed making it ;]
Have Fun !

Bart

About JOSNBOT:

JSONBOT is a remote event-driven framework for building bots that talk
JSON to each other over XMPP.

This distribution provides bots built on this framework for console,
IRC, XMPP for the shell and WWW and XMPP for the Google Application
engine.

JSONBOT is all of the following:

a shell console bot
a shell IRC bot
a shell XMPP bot
a Web bot running on Google Application Engine
a XMPP bot running on Google Application Engine
a Google Wave bot running op Google Application Engine
the XMPP bots are used to communicate between bots
plugin infrastructure to write your own functionality
event driven framework by the use of callbacks
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Cython 0.14.1 has been released

2011-02-04 Thread robertwb
Cython 0.14.1 has just been released. This release is primarily a bug
fix release building on top of 0.14.

Download: http://cython.org/release/Cython-0.14.1rc3.tar.gz

== New Features ==

- The gdb debugging support was extended to include all major Cython
features, including closures.
raise MemoryError() is now safe to use as Cython replaces it with the
correct C-API call.
- Better support for testing (including on Windows)
- General improvements and bug fixes

The bug tracker has a list of the major improvements and fixes:
http://trac.cython.org/cython_trac/query?status=closedgroup=componentorder=idcol=idcol=summarycol=milestonecol=statuscol=typecol=prioritycol=componentmilestone=0.14.1desc=1

== Incompatible changes ==

- Decorators on special methods of cdef classes now raise a compile
time error rather than being ignored.
- In Python 3 language level mode (-3 option), the 'str' type is now
mapped to 'unicode', so that cdef str s declares a Unicode string even
when running in Python 2.

== Contributors ==

Many people contributed to this release, including:

- Stefan Behnel
- Alexey Borzenkov
- Robert Bradshaw
- Lisandro Dalcin
- Mark Florisson
- W. Trevor King
- Vitja Makarov

A special thanks also to the many people who did testing and
contributed useful bug reports.
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/