2023-05-12 17:10:07 +10:00
|
|
|
print("time from filesystem")
|
|
|
|
|
|
|
|
# Tests the CPython-compatible / non-u-prefix way of forcing a builtin
|
|
|
|
# import.
|
|
|
|
import sys
|
|
|
|
|
2022-08-18 16:57:45 +10:00
|
|
|
_path = sys.path
|
|
|
|
sys.path = ()
|
2023-05-12 17:10:07 +10:00
|
|
|
from time import *
|
|
|
|
|
2022-08-18 16:57:45 +10:00
|
|
|
sys.path = _path
|
2023-05-12 17:10:07 +10:00
|
|
|
del _path
|
|
|
|
|
|
|
|
extra = 1
|