Update of /cvsroot/jython/jython/org/python/core
In directory usw-pr-cvs1:/tmp/cvs-serv489
Modified Files:
PyArray.java
Log Message:
Added javadoc comments.
Index: PyArray.java
===================================================================
RCS file: /cvsroot/jython/jython/org/python/core/PyArray.java,v
retrieving revision 2.4
retrieving revision 2.5
diff -C2 -r2.4 -r2.5
*** PyArray.java 2001/02/01 16:41:10 2.4
--- PyArray.java 2001/02/25 16:42:18 2.5
***************
*** 3,6 ****
--- 3,15 ----
import java.lang.reflect.Array;
+ /**
+ * A wrapper class around native java arrays.
+ *
+ * Instances of PyArray are created either by java functions or
+ * directly by the jarray module.
+ *
+ * @see org.python.modules.jarray
+ */
+
public class PyArray extends PySequence {
Object data;
|