diff options
author | Oleg Iarygin <oleg@arhadthedev.net> | 2022-08-06 00:41:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-06 00:41:29 (GMT) |
commit | 56d16e8cb4e7d7ab47efdec08a0dae8d21b155f5 (patch) | |
tree | b22cfea0622fb75e88651cefecb96dfeadf0732b /Lib/test/test_smtplib.py | |
parent | 29650fea9605bf1f48320487c6d5d6d70d97ad95 (diff) | |
download | cpython-56d16e8cb4e7d7ab47efdec08a0dae8d21b155f5.zip cpython-56d16e8cb4e7d7ab47efdec08a0dae8d21b155f5.tar.gz cpython-56d16e8cb4e7d7ab47efdec08a0dae8d21b155f5.tar.bz2 |
gh-93243: Make smtpd private before porting its users (GH-93246)
gh-93243
This PR is required to reduce diffs of the following porting (no need to either maintain documentation and tests consistent with each porting step, or try to port everything and remove smtpd in a single PR).
Automerge-Triggered-By: GH:warsaw
Diffstat (limited to 'Lib/test/test_smtplib.py')
-rw-r--r-- | Lib/test/test_smtplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_smtplib.py b/Lib/test/test_smtplib.py index a4074c0..3210ef2 100644 --- a/Lib/test/test_smtplib.py +++ b/Lib/test/test_smtplib.py @@ -24,9 +24,9 @@ from test.support import threading_helper from test.support import warnings_helper from unittest.mock import Mock +from . import smtpd asyncore = warnings_helper.import_deprecated('asyncore') -smtpd = warnings_helper.import_deprecated('smtpd') support.requires_working_socket(module=True) |