From: <nr...@us...> - 2008-08-03 04:33:41
|
Revision: 5059 http://jython.svn.sourceforge.net/jython/?rev=5059&view=rev Author: nriley Date: 2008-08-03 04:33:38 +0000 (Sun, 03 Aug 2008) Log Message: ----------- Remove workaround for issue 1059 (was fixed in r4713). Modified Paths: -------------- branches/asm/Lib/os.py Modified: branches/asm/Lib/os.py =================================================================== --- branches/asm/Lib/os.py 2008-08-03 03:09:49 UTC (rev 5058) +++ branches/asm/Lib/os.py 2008-08-03 04:33:38 UTC (rev 5059) @@ -508,9 +508,6 @@ if times is not None: # We don't use the access time, but typecheck it anyway long(times[0]) - if times[0] is None: # XXX http://bugs.jython.org/issue1059 - # CPython says the same, although it takes floats too - raise TypeError('an integer is required') mtime = times[1] else: mtime = time.time() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |