summaryrefslogtreecommitdiff
path: root/tests/compile/fromimport.pyx
blob: e84b26a970d6afeaf42498dd28b337e914a74e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# mode: compile

def f():
    from spam import eggs
    from spam.morespam import bacon, eggs, ham
    from spam import eggs as ova
    from . import spam
    from ... import spam
    from .. . import spam
    from . .. import spam
    from . . . import spam
    from .. import spam, foo
    from . . import spam, foo
    from ... import spam, foobar
    from .. . import spam, foobar
    from . .. import spam, foobar
    from . . . import spam, foobar
    from .spam import foo
    from . spam import foo
    from ...spam import foo, bar
    from .. . spam import foo, bar
    from . .. spam import foo, bar
    from . . . spam import foo, bar
    from ...spam.foo import bar
    from ... spam.foo import bar
    from .. . spam.foo import bar
    from . .. spam.foo import bar
    from . . . spam.foo import bar
    from ...spam.foo import foo, bar
    from ... spam.foo import foo, bar
    from .. . spam.foo import foo, bar
    from . .. spam.foo import foo, bar
    from . . . spam.foo import foo, bar
    from ...spam.foo import (foo, bar)
    from ... spam.foo import (foo, bar)
    from .. . spam.foo import (foo, bar)
    from .. . spam.foo import (foo, bar)
    from . .. spam.foo import (foo, bar)
    from . . . spam.foo import (foo, bar)