micropython/tests/bytecode/mp-tests/import3.py

9 wiersze
119 B
Python

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)