]> git.madduck.net Git - etc/vim.git/blob - tests/import_spacing.py

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Added caching (#136)
[etc/vim.git] / tests / import_spacing.py
1 """The asyncio package, tracking PEP 3156."""
2
3 # flake8: noqa
4
5 import sys
6
7 # This relies on each of the submodules having an __all__ variable.
8 from .base_events import *
9 from .coroutines import *
10 from .events import *  # comment here
11
12 from .futures import *
13 from .locks import *  # comment here
14 from .protocols import *
15
16 from ..runners import *  # comment here
17 from ..queues import *
18 from ..streams import *
19
20 from .a.b.c.subprocess import *
21 from . import (tasks)
22 from . import (A, B, C)
23 from . import SomeVeryLongNameAndAllOfItsAdditionalLetters1, \
24               SomeVeryLongNameAndAllOfItsAdditionalLetters2
25
26 __all__ = (
27     base_events.__all__
28     + coroutines.__all__
29     + events.__all__
30     + futures.__all__
31     + locks.__all__
32     + protocols.__all__
33     + runners.__all__
34     + queues.__all__
35     + streams.__all__
36     + tasks.__all__
37 )
38
39
40 # output
41
42
43 """The asyncio package, tracking PEP 3156."""
44
45 # flake8: noqa
46
47 import sys
48
49 # This relies on each of the submodules having an __all__ variable.
50 from .base_events import *
51 from .coroutines import *
52 from .events import *  # comment here
53
54 from .futures import *
55 from .locks import *  # comment here
56 from .protocols import *
57
58 from ..runners import *  # comment here
59 from ..queues import *
60 from ..streams import *
61
62 from .a.b.c.subprocess import *
63 from . import tasks
64 from . import A, B, C
65 from . import (
66     SomeVeryLongNameAndAllOfItsAdditionalLetters1,
67     SomeVeryLongNameAndAllOfItsAdditionalLetters2,
68 )
69
70 __all__ = (
71     base_events.__all__
72     + coroutines.__all__
73     + events.__all__
74     + futures.__all__
75     + locks.__all__
76     + protocols.__all__
77     + runners.__all__
78     + queues.__all__
79     + streams.__all__
80     + tasks.__all__
81 )