[Pydev-cvs] org.python.pydev/src_completions/org/python/pydev/editor/codecompletion PyContentAssis
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-08-17 00:26:37
|
Update of /cvsroot/pydev/org.python.pydev/src_completions/org/python/pydev/editor/codecompletion In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6943/src_completions/org/python/pydev/editor/codecompletion Modified Files: PyContentAssistant.java Log Message: <li><strong>Pydev debugger</strong>Workaround for python bug when filenames don't have absolute paths correctly generated</li> <li><strong>Pydev code-completion</strong>Wild import will only show tokens defined in __all__ (if it's available)</li> <li><strong>Interactive console</strong>: Fixed problem when more attempts to connect were needed</li> <li><strong>Interactive console</strong>Fixed console integration problem with other plugins because of interfaces not properly implemented</li> <li><strong>Code Formatter</strong>: Exponentials handled correctly</li> <li><strong>Launching</strong>: Unit-test and code-coverage may launch multiple folders/files at once</li> <li><strong>Code coverage</strong>: Number format exception no longer given when trying to show lines not executed in the editor and all lines are executed</li> Index: PyContentAssistant.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/src_completions/org/python/pydev/editor/codecompletion/PyContentAssistant.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PyContentAssistant.java 13 Aug 2008 21:12:16 -0000 1.7 --- PyContentAssistant.java 17 Aug 2008 00:26:46 -0000 1.8 *************** *** 17,21 **** import org.python.pydev.editor.PyInformationPresenter; import org.python.pydev.plugin.KeyBindingHelper; - import org.python.pydev.plugin.PydevPlugin; /** --- 17,20 ---- *************** *** 41,45 **** setRepeatedInvocationMode(true); }catch(Exception e){ ! PydevPlugin.log(e); } --- 40,44 ---- setRepeatedInvocationMode(true); }catch(Exception e){ ! //no need to log } *************** *** 47,51 **** setRepeatedInvocationTrigger(KeyBindingHelper.getContentAssistProposalBinding()); }catch(Exception e){ ! PydevPlugin.log(e); } --- 46,50 ---- setRepeatedInvocationTrigger(KeyBindingHelper.getContentAssistProposalBinding()); }catch(Exception e){ ! //no need to log } *************** *** 53,57 **** setStatusLineVisible(true); }catch(Exception e){ ! PydevPlugin.log(e); } } --- 52,56 ---- setStatusLineVisible(true); }catch(Exception e){ ! //no need to log } } |