15 lines
225 B
Python
15 lines
225 B
Python
|
print("time from filesystem")
|
||
|
|
||
|
# Tests the CPython-compatible / non-u-prefix way of forcing a builtin
|
||
|
# import.
|
||
|
import sys
|
||
|
|
||
|
_path = sys.path[:]
|
||
|
sys.path.clear()
|
||
|
from time import *
|
||
|
|
||
|
sys.path.extend(_path)
|
||
|
del _path
|
||
|
|
||
|
extra = 1
|