Skip to content

Commit 6985e82

Browse files
committed
Removed redundant __all__'s
1 parent b6a4307 commit 6985e82

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

stubs/3.4/asyncio/events.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
# ]
1313

1414

15-
__all__ = ['AbstractEventLoop', 'Handle', 'get_event_loop']
16-
1715
_T = typevar('_T')
1816

1917
class Handle:

stubs/3.4/asyncio/futures.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# 'InvalidStateError',
55
# 'Future', 'wrap_future',
66
# ]
7-
__all__ = ['Future']
87

98
_T = typevar('_T')
109

stubs/3.4/asyncio/tasks.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
# 'gather', 'shield',
88
# ]
99

10-
__all__ = ['coroutine', 'sleep']
11-
1210
_T = typevar('_T')
11+
1312
def coroutine(f: Any) -> Any: pass
1413
def sleep(delay: float, result: _T=None, loop: AbstractEventLoop=None) -> _T: pass

0 commit comments

Comments
 (0)