summaryrefslogtreecommitdiffstatshomepage
path: root/tests/import/ext/time.py
blob: 6b460b42355711b2289e3da8007d63a20b319680 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
print("time from filesystem")

# Tests the CPython-compatible / non-u-prefix way of forcing a builtin
# import.
import sys

_path = sys.path
sys.path = ()
from time import *

sys.path = _path
del _path

extra = 1