[Pydev-cvs] org.python.pydev.core/src/org/python/pydev/core IPythonNature.java, 1.17, 1.18
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-05-02 23:24:16
|
Update of /cvsroot/pydev/org.python.pydev.core/src/org/python/pydev/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20166/src/org/python/pydev/core Modified Files: IPythonNature.java Log Message: Code-completion for external files. https://sourceforge.net/tracker/index.php?func=detail&aid=1951796&group_id=85796&atid=577332 Index: IPythonNature.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.core/src/org/python/pydev/core/IPythonNature.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** IPythonNature.java 28 Feb 2008 01:44:56 -0000 1.17 --- IPythonNature.java 2 May 2008 23:24:18 -0000 1.18 *************** *** 24,27 **** --- 24,30 ---- public static final String JYTHON_VERSION_2_1 = "jython 2.1"; + public static final String JYTHON_VERSION_LATEST = JYTHON_VERSION_2_1; + public static final String PYTHON_VERSION_LATEST = PYTHON_VERSION_2_5; + /** * this id is provided so that we can have an identifier for python-related things (independent of its version) *************** *** 48,51 **** --- 51,60 ---- /** * set the project version given the constants provided + * + * @see PYTHON_VERSION_2_3 + * @see PYTHON_VERSION_2_4 + * @see PYTHON_VERSION_2_5 + * @see JYTHON_VERSION_2_1 + * * @throws CoreException */ |