diff options
author | Victor Stinner <vstinner@python.org> | 2021-11-15 23:29:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 23:29:17 (GMT) |
commit | 9bf2cbc4c498812e14f20d86acb61c53928a5a57 (patch) | |
tree | 3967d6f8ac254b8ed51ee8ab26eb94cb593223f9 /PCbuild | |
parent | 3352834f59531dfa42dbef00ada4fb95ded2ae3a (diff) | |
download | cpython-9bf2cbc4c498812e14f20d86acb61c53928a5a57.zip cpython-9bf2cbc4c498812e14f20d86acb61c53928a5a57.tar.gz cpython-9bf2cbc4c498812e14f20d86acb61c53928a5a57.tar.bz2 |
bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)
Remove the asyncore and asynchat modules, deprecated in Python
3.6: use the asyncio module instead.
Remove the smtpd module, deprecated in Python 3.6: the aiosmtpd
module can be used instead, it is based on asyncio.
* Remove asyncore, asynchat and smtpd documentation
* Remove test_asyncore, test_asynchat and test_smtpd
* Rename Lib/asynchat.py to Lib/test/support/_asynchat.py
* Rename Lib/asyncore.py to Lib/test/support/_asyncore.py
* Rename Lib/smtpd.py to Lib/test/support/_smtpd.py
* Remove DeprecationWarning from private _asyncore, _asynchat and
_smtpd modules
* _smtpd: remove deprecated properties
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/lib.pyproj | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/PCbuild/lib.pyproj b/PCbuild/lib.pyproj index 43c570f..7dd40ad 100644 --- a/PCbuild/lib.pyproj +++ b/PCbuild/lib.pyproj @@ -24,7 +24,6 @@ <Compile Include="antigravity.py" /> <Compile Include="argparse.py" /> <Compile Include="ast.py" /> - <Compile Include="asynchat.py" /> <Compile Include="asyncio\base_events.py" /> <Compile Include="asyncio\base_futures.py" /> <Compile Include="asyncio\base_subprocess.py" /> @@ -50,7 +49,6 @@ <Compile Include="asyncio\windows_events.py" /> <Compile Include="asyncio\windows_utils.py" /> <Compile Include="asyncio\__init__.py" /> - <Compile Include="asyncore.py" /> <Compile Include="base64.py" /> <Compile Include="bdb.py" /> <Compile Include="bisect.py" /> @@ -722,7 +720,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" /> @@ -860,7 +857,6 @@ <Compile Include="test\test_asdl_parser.py" /> <Compile Include="test\test_ast.py" /> <Compile Include="test\test_asyncgen.py" /> - <Compile Include="test\test_asynchat.py" /> <Compile Include="test\test_asyncio\echo.py" /> <Compile Include="test\test_asyncio\echo2.py" /> <Compile Include="test\test_asyncio\echo3.py" /> @@ -882,7 +878,6 @@ <Compile Include="test\test_asyncio\test_windows_utils.py" /> <Compile Include="test\test_asyncio\__init__.py" /> <Compile Include="test\test_asyncio\__main__.py" /> - <Compile Include="test\test_asyncore.py" /> <Compile Include="test\test_atexit.py" /> <Compile Include="test\test_audioop.py" /> <Compile Include="test\test_augassign.py" /> @@ -1263,7 +1258,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" /> |