Hi All, Pydev and Pydev Extensions 1.3.7 have been released
Details on Pydev Extensions: http://www.fabioz.com/pydev Details on Pydev: http://pydev.sf.net Details on its development: http://pydev.blogspot.com Release Highlights: ---------------------------------------------- * Support for Eclipse 3.3 * Bug Fix: Interpreter modules not correctly set/persisted after specifying interpreter (so, the builtins and other system libraries would not be available in completions). * Mylyn integration. * Open With Pydev: does not appear for containers anymore. * Code-completion: The folowing cases are now considered in code-completion to discover the type of a variable: o Type/Interface checking: (note that 'assert' is required) assert isinstance(obj, Interface) -- default from python o assert Interface.implementedBy(obj) -- zope o assert IsImplementation(obj, Interface) -- custom request o assert IsInterfaceDeclared(obj, Interface) -- custom request o Factory methods a = adapt(obj, Interface) -- pyprotocols o a = obj.GetAdapter(Interface) -- custom request o a = obj.get_adapter(Interface) -- custom request o a = GetSingleton(Interface) -- custom request o a = GetImplementation(Interface) -- custom request What is PyDev? --------------------------- PyDev is a plugin that enables users to use Eclipse for Python and Jython 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 ESSS - Engineering Simulation and Scientific Software http://www.esss.com.br Pydev Extensions http://www.fabioz.com/pydev Pydev - Python Development Enviroment for Eclipse http://pydev.sf.net http://pydev.blogspot.com
-- http://mail.python.org/mailman/listinfo/python-list