summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/import3.py
blob: 7f365a51eb8eae19c687762597d1236939ad3213 (plain) (blame)
1
2
3
4
5
6
7
8
import a.b
import a.b.c
from a.b import d
from a.b.c import d

from a import *
from a import d, e
from a import (d, e)