summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ftplib.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-14 12:46:42 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-11-14 12:46:42 (GMT)
commit19e69c5a2067fe6322ead88733ebbca77673010b (patch)
treea16cdb8e1d9e80a4c47d8aa0702cc616afb1d3ea /Lib/test/test_ftplib.py
parentd226d308a3856e67c654ff3d5924be6d24568388 (diff)
downloadcpython-19e69c5a2067fe6322ead88733ebbca77673010b.zip
cpython-19e69c5a2067fe6322ead88733ebbca77673010b.tar.gz
cpython-19e69c5a2067fe6322ead88733ebbca77673010b.tar.bz2
Issue #23883: Add missing APIs to __all__; patch by Jacek KoƂodziej
Diffstat (limited to 'Lib/test/test_ftplib.py')
-rw-r--r--Lib/test/test_ftplib.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py
index aef66da..9d8de21 100644
--- a/Lib/test/test_ftplib.py
+++ b/Lib/test/test_ftplib.py
@@ -1049,10 +1049,19 @@ class TestTimeouts(TestCase):
ftp.close()
+class MiscTestCase(TestCase):
+ def test__all__(self):
+ blacklist = {'MSG_OOB', 'FTP_PORT', 'MAXLINE', 'CRLF', 'B_CRLF',
+ 'Error', 'parse150', 'parse227', 'parse229', 'parse257',
+ 'print_line', 'ftpcp', 'test'}
+ support.check__all__(self, ftplib, blacklist=blacklist)
+
+
def test_main():
tests = [TestFTPClass, TestTimeouts,
TestIPv6Environment,
- TestTLS_FTPClassMixin, TestTLS_FTPClass]
+ TestTLS_FTPClassMixin, TestTLS_FTPClass,
+ MiscTestCase]
thread_info = support.threading_setup()
try: