]> 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:

Initial commit
[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 .subprocess import *
21 from .tasks import *
22 from .transports import *
23
24 __all__ = (
25     base_events.__all__ +
26     coroutines.__all__ +
27     events.__all__ +
28     futures.__all__ +
29     locks.__all__ +
30     protocols.__all__ +
31     runners.__all__ +
32     queues.__all__ +
33     streams.__all__ +
34     subprocess.__all__ +
35     tasks.__all__ +
36     transports.__all__
37 )
38
39
40 # output
41
42
43 """The asyncio package, tracking PEP 3156."""
44 # flake8: noqa
45 import sys
46
47 # This relies on each of the submodules having an __all__ variable.
48 from .base_events import *
49 from .coroutines import *
50 from .events import *  # comment here
51
52 from .futures import *
53 from .locks import *  # comment here
54 from .protocols import *
55
56 from .runners import *  # comment here
57 from .queues import *
58 from .streams import *
59
60 from .subprocess import *
61 from .tasks import *
62 from .transports import *
63
64 __all__ = (
65     base_events.__all__ +
66     coroutines.__all__ +
67     events.__all__ +
68     futures.__all__ +
69     locks.__all__ +
70     protocols.__all__ +
71     runners.__all__ +
72     queues.__all__ +
73     streams.__all__ +
74     subprocess.__all__ +
75     tasks.__all__ +
76     transports.__all__
77 )