Index: jython/org/python/core/PyArray.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/PyArray.java,v retrieving revision 2.9 diff -c -r2.9 PyArray.java *** jython/org/python/core/PyArray.java 26 May 2002 21:00:49 -0000 2.9 --- jython/org/python/core/PyArray.java 26 Oct 2002 20:00:19 -0000 *************** *** 152,157 **** --- 152,161 ---- "can only convert arrays of byte and char to string"); } + public PyString __str__() { + return new PyString(tostring()); + } + public PyString __repr__() { StringBuffer buf = new StringBuffer("array(["); for (int i=0; i<__len__()-1; i++) {