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 /PCbuild | |
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 'PCbuild')
-rw-r--r-- | PCbuild/lib.pyproj | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/PCbuild/lib.pyproj b/PCbuild/lib.pyproj index 0556efe..e8c99f6 100644 --- a/PCbuild/lib.pyproj +++ b/PCbuild/lib.pyproj @@ -642,7 +642,6 @@ <Compile Include="shutil.py" /> <Compile Include="signal.py" /> <Compile Include="site.py" /> - <Compile Include="smtpd.py" /> <Compile Include="smtplib.py" /> <Compile Include="sndhdr.py" /> <Compile Include="socket.py" /> @@ -760,6 +759,7 @@ <Compile Include="test\sample_doctest_no_doctests.py" /> <Compile Include="test\seq_tests.py" /> <Compile Include="test\signalinterproctester.py" /> + <Compile Include="test\smtpd.py" /> <Compile Include="test\sortperf.py" /> <Compile Include="test\ssltests.py" /> <Compile Include="test\ssl_servers.py" /> @@ -1261,7 +1261,6 @@ <Compile Include="test\test_signal.py" /> <Compile Include="test\test_site.py" /> <Compile Include="test\test_slice.py" /> - <Compile Include="test\test_smtpd.py" /> <Compile Include="test\test_smtplib.py" /> <Compile Include="test\test_smtpnet.py" /> <Compile Include="test\test_sndhdr.py" /> |