All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bugtests.test330.py Maven / Gradle / Ivy

There is a newer version: 2.7.1.1
Show newest version
"""
[ #477793 ] os.utime() is missing
"""

import support

import os
f = open("test330.out", "w")
f.close()

m = os.stat("test330.out")[8]
os.utime("test330.out", (0, 0))
if os.stat("test330.out")[8] != 0:
    raise support.TestWarning("Modification time not changed #1")

os.utime("test330.out", (m, m))
if os.stat("test330.out")[8] != m:
    raise support.TestError("Modification time not changed #2")





© 2015 - 2025 Weber Informatics LLC | Privacy Policy