From: <pj...@us...> - 2009-11-15 00:58:55
|
Revision: 6943 http://jython.svn.sourceforge.net/jython/?rev=6943&view=rev Author: pjenvey Date: 2009-11-15 00:58:31 +0000 (Sun, 15 Nov 2009) Log Message: ----------- default time fields to int to match CPython Modified Paths: -------------- trunk/jython/src/org/python/modules/posix/PyStatResult.java Modified: trunk/jython/src/org/python/modules/posix/PyStatResult.java =================================================================== --- trunk/jython/src/org/python/modules/posix/PyStatResult.java 2009-11-11 03:18:09 UTC (rev 6942) +++ trunk/jython/src/org/python/modules/posix/PyStatResult.java 2009-11-15 00:58:31 UTC (rev 6943) @@ -75,8 +75,8 @@ return new PyStatResult(Py.newInteger(stat.mode()), Py.newLong(stat.ino()), Py.newLong(stat.dev()), Py.newInteger(stat.nlink()), Py.newInteger(stat.uid()), Py.newInteger(stat.gid()), - Py.newLong(stat.st_size()), Py.newLong(stat.atime()), - Py.newLong(stat.mtime()), Py.newLong(stat.ctime())); + Py.newLong(stat.st_size()), Py.newInteger(stat.atime()), + Py.newInteger(stat.mtime()), Py.newInteger(stat.ctime())); } @Override This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |