From: Finn B. <bc...@us...> - 2001-11-03 15:57:26
|
Update of /cvsroot/jython/bugtests In directory usw-pr-cvs1:/tmp/cvs-serv8363 Added Files: test331.py Log Message: Test for [ #477608 ] os.path.getmtime() missing --- NEW FILE: test331.py --- """ [ #477608 ] os.path.getmtime() missing """ import support import os s = os.stat("test331.py") if s[8] != os.path.getmtime("test331.py"): raise support.TestWarning("Modification time was wrong") if s[7] != os.path.getatime("test331.py"): raise support.TestWarning("Access time was wrong") |