From: Fabio Z. <fa...@us...> - 2008-09-28 12:45:50
|
Update of /cvsroot/pydev/org.python.pydev/tests/pysrc/extendable/all_check2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4313/tests/pysrc/extendable/all_check2 Added Files: __init__.py 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 --- NEW FILE: __init__.py --- class ThisGoes: pass class ThisGoesToo: pass class ThisDoesnt: pass __all__ = ['ThisGoes'] __all__.append('ThisGoesToo') #When it's defined in runtime, any addition will make it accept anything (at least for now). |