Skip to content

Commit 7545635

Browse files
committed
Add some function to __all__ to run tests
This change is result from the supporting __all__ in modules
1 parent c3cb5b9 commit 7545635

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/_codecs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
'latin_1_encode', 'mbcs_decode', 'readbuffer_encode', 'escape_encode',
4747
'utf_8_decode', 'raw_unicode_escape_decode', 'utf_7_decode',
4848
'unicode_escape_encode', 'latin_1_decode', 'utf_16_decode',
49-
'unicode_escape_decode', 'ascii_decode', 'charmap_encode',
49+
'unicode_escape_decode', 'ascii_decode', 'charmap_encode', 'charmap_build',
5050
'unicode_internal_encode', 'unicode_internal_decode', 'utf_16_ex_decode',
5151
'escape_decode', 'charmap_decode', 'utf_7_encode', 'mbcs_encode',
5252
'ascii_encode', 'utf_16_encode', 'raw_unicode_escape_encode', 'utf_8_encode',

Lib/asyncio/tasks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
'FIRST_COMPLETED', 'FIRST_EXCEPTION', 'ALL_COMPLETED',
55
'wait', 'wait_for', 'as_completed', 'sleep', 'async',
66
'gather', 'shield', 'ensure_future', 'run_coroutine_threadsafe',
7+
'all_tasks'
78
]
89

910
import concurrent.futures

0 commit comments

Comments
 (0)