diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-11-14 12:46:42 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-11-14 12:46:42 +0000 |
commit | 19e69c5a2067fe6322ead88733ebbca77673010b (patch) | |
tree | a16cdb8e1d9e80a4c47d8aa0702cc616afb1d3ea /Lib/wave.py | |
parent | d226d308a3856e67c654ff3d5924be6d24568388 (diff) | |
download | cpython-git-19e69c5a2067fe6322ead88733ebbca77673010b.tar.gz |
Issue #23883: Add missing APIs to __all__; patch by Jacek KoĆodziej
Diffstat (limited to 'Lib/wave.py')
-rw-r--r-- | Lib/wave.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/wave.py b/Lib/wave.py index 8a101e320b..f71f7e5bf9 100644 --- a/Lib/wave.py +++ b/Lib/wave.py @@ -73,7 +73,7 @@ is destroyed. import builtins -__all__ = ["open", "openfp", "Error"] +__all__ = ["open", "openfp", "Error", "Wave_read", "Wave_write"] class Error(Exception): pass |