Update of /cvsroot/jython/jython/org/python/core
In directory usw-pr-cvs1:/tmp/cvs-serv15096
Modified Files:
PySystemState.java
Log Message:
Prepare for beta1.
Index: PySystemState.java
===================================================================
RCS file: /cvsroot/jython/jython/org/python/core/PySystemState.java,v
retrieving revision 2.60
retrieving revision 2.61
diff -C2 -d -r2.60 -r2.61
*** PySystemState.java 2001/07/27 14:56:10 2.60
--- PySystemState.java 2001/08/19 21:16:33 2.61
***************
*** 18,28 ****
* The current version of JPython.
*/
! public static String version = "2.1a3";
private static int PY_MAJOR_VERSION = 2;
private static int PY_MINOR_VERSION = 1;
private static int PY_MICRO_VERSION = 0;
! private static int PY_RELEASE_LEVEL = 0xA;
! private static int PY_RELEASE_SERIAL = 3;
public static int hexversion = ((PY_MAJOR_VERSION << 24) |
--- 18,28 ----
* The current version of JPython.
*/
! public static String version = "2.1b1";
private static int PY_MAJOR_VERSION = 2;
private static int PY_MINOR_VERSION = 1;
private static int PY_MICRO_VERSION = 0;
! private static int PY_RELEASE_LEVEL = 0xB;
! private static int PY_RELEASE_SERIAL = 1;
public static int hexversion = ((PY_MAJOR_VERSION << 24) |
|