From: Finn B. <bc...@us...> - 2001-03-05 19:54:43
|
Update of /cvsroot/jython/jython/org/python/core In directory usw-pr-cvs1:/tmp/cvs-serv3105 Modified Files: PyXRange.java Log Message: Make start, stop & step visible attribute on the xrange object. Index: PyXRange.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/PyXRange.java,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -r2.2 -r2.3 *** PyXRange.java 2001/02/01 16:41:11 2.2 --- PyXRange.java 2001/03/05 19:56:18 2.3 *************** *** 12,16 **** public class PyXRange extends PySequence { ! int start, stop, step; // directly from xrange(start, stop, step) int cycleLength; // The length of an uncopied xrange int copies; // The number of copies made (used to implement --- 12,16 ---- public class PyXRange extends PySequence { ! public int start, stop, step; // directly from xrange(start, stop, step) int cycleLength; // The length of an uncopied xrange int copies; // The number of copies made (used to implement |