[Pydev-cvs] org.python.pydev.debug plugin.xml,1.76,1.77
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-09-27 19:59:42
|
Update of /cvsroot/pydev/org.python.pydev.debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20604 Modified Files: plugin.xml Log Message: Synching to latest changes: Pydev <ul> <li><strong>Editor</strong>: Cursor settings no longer overridden</li> <li><strong>Code-completion</strong>: If __all__ is defined with runtime elements (and not only in a single assign statement), it's ignored for code-completion purposes</li> <li><strong>Debugger</strong>: Pythonpath the same in debug and regular modes (sys.path[0] is the same directory as the file run)</li> <li><strong>Debugger</strong>: Persist choices done in the debugger when files from the debugger are not found</li> <li><strong>Interpreter config</strong>: "email" automatically added to the "forced builtins"</li> <li><strong>Parser</strong>: Correctly recognizing absolute import with 3 or more levels</li> <li><strong>Syntax check</strong>: Option to do only on active editor</li> </ul> Also: tabs changed for spaces Index: plugin.xml =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/plugin.xml,v retrieving revision 1.76 retrieving revision 1.77 diff -C2 -d -r1.76 -r1.77 *** plugin.xml 17 Aug 2008 00:26:56 -0000 1.76 --- plugin.xml 27 Sep 2008 19:59:11 -0000 1.77 *************** *** 481,484 **** --- 481,493 ---- </extension> + <extension point="org.eclipse.ui.preferencePages"> + <page + name="Source Locator" + category="org.python.pydev.prefs.debugPage" + class="org.python.pydev.debug.ui.SourceLocatorPrefsPage" + id="org.python.pydev.prefs.debugPage.SourceLocatorPrefsPage"> + </page> + </extension> + <extension point="org.python.pydev.pydev_pyedit_listener"> <pyedit_listener_participant class="org.python.pydev.debug.ui.PyEditBreakpointSync"/> |