From: Finn B. <bc...@us...> - 2001-11-27 13:51:41
|
Update of /cvsroot/jython/jython/org/python/modules In directory usw-pr-cvs1:/tmp/cvs-serv9040/modules Modified Files: _weakref.java cPickle.java cStringIO.java codeop.java time.java Log Message: Whitespace normalization. Index: _weakref.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/modules/_weakref.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _weakref.java 2001/08/19 18:14:53 1.1 --- _weakref.java 2001/11/27 13:51:37 1.2 *************** *** 21,25 **** reaperThread.start(); } ! /** <i>Internal use only. Do not call this method explicit.</i> */ public static void classDictInit(PyObject dict) --- 21,25 ---- reaperThread.start(); } ! /** <i>Internal use only. Do not call this method explicit.</i> */ public static void classDictInit(PyObject dict) *************** *** 150,154 **** for (int i = references.size() - 1; i >= 0; i--) { AbstractReference r = getReferenceAt(i); ! if (r == null) references.removeElementAt(i); else if (r.callback == null && r.getClass() == cls) { --- 150,154 ---- for (int i = references.size() - 1; i >= 0; i--) { AbstractReference r = getReferenceAt(i); ! if (r == null) references.removeElementAt(i); else if (r.callback == null && r.getClass() == cls) { *************** *** 165,169 **** for (int i = references.size() - 1; i >= 0; i--) { AbstractReference r = getReferenceAt(i); ! if (r == null) references.removeElementAt(i); else --- 165,169 ---- for (int i = references.size() - 1; i >= 0; i--) { AbstractReference r = getReferenceAt(i); ! if (r == null) references.removeElementAt(i); else *************** *** 186,190 **** for (int i = references.size() - 1; i >= 0; i--) { AbstractReference r = getReferenceAt(i); ! if (r == null) references.removeElementAt(i); else --- 186,190 ---- for (int i = references.size() - 1; i >= 0; i--) { AbstractReference r = getReferenceAt(i); ! if (r == null) references.removeElementAt(i); else *************** *** 308,313 **** public PyComplex __complex__() { return py().__complex__(); } public PyObject __pos__() { return py().__pos__(); } ! public PyObject __neg__() { return py().__neg__(); } ! public PyObject __abs__() { return py().__abs__(); } public PyObject __invert__() { return py().__invert__(); } --- 308,313 ---- public PyComplex __complex__() { return py().__complex__(); } public PyObject __pos__() { return py().__pos__(); } ! public PyObject __neg__() { return py().__neg__(); } ! public PyObject __abs__() { return py().__abs__(); } public PyObject __invert__() { return py().__invert__(); } Index: cPickle.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/modules/cPickle.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** cPickle.java 2001/10/28 17:13:44 1.19 --- cPickle.java 2001/11/27 13:51:37 1.20 *************** *** 484,488 **** self.__setattr__("args", args); - } --- 484,487 ---- Index: cStringIO.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/modules/cStringIO.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** cStringIO.java 2001/11/27 12:08:39 1.11 --- cStringIO.java 2001/11/27 13:51:37 1.12 *************** *** 75,79 **** super.__setattr__(name, value); } ! /** * Free the memory buffer. --- 75,79 ---- super.__setattr__(name, value); } ! /** * Free the memory buffer. Index: codeop.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/modules/codeop.java,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -d -r2.7 -r2.8 *** codeop.java 2001/10/28 17:13:44 2.7 --- codeop.java 2001/11/27 13:51:37 2.8 *************** *** 9,20 **** ); ! public static void classDictInit(PyObject dict) ! { dict.__delitem__("compile_command_flags"); dict.__delitem__("classDictInit"); } ! public static PyList __all__ = new PyList(new PyString[] { ! new PyString("compile_command") }); --- 9,20 ---- ); ! public static void classDictInit(PyObject dict) ! { dict.__delitem__("compile_command_flags"); dict.__delitem__("classDictInit"); } ! public static PyList __all__ = new PyList(new PyString[] { ! new PyString("compile_command") }); *************** *** 32,36 **** return compile_command_flags(string,filename,kind,null); } ! public static PyObject compile_command_flags(String string,String filename,String kind,CompilerFlags cflags) { --- 32,36 ---- return compile_command_flags(string,filename,kind,null); } ! public static PyObject compile_command_flags(String string,String filename,String kind,CompilerFlags cflags) { Index: time.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/modules/time.java,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -d -r2.18 -r2.19 *** time.java 2001/10/28 17:13:44 2.18 --- time.java 2001/11/27 13:51:37 2.19 *************** *** 590,594 **** return tz.getID(); } ! private static int getDSTSavings(TimeZone tz) { String version = System.getProperty("java.version"); --- 590,594 ---- return tz.getID(); } ! private static int getDSTSavings(TimeZone tz) { String version = System.getProperty("java.version"); |