Skip to content

Commit 9bf2cbc

Browse files
authored
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
1 parent 3352834 commit 9bf2cbc

28 files changed

+34
-3228
lines changed

.github/CODEOWNERS

-2
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,6 @@ Lib/ast.py @isidentical
130130

131131
**/*typing* @gvanrossum @Fidget-Spinner
132132

133-
**/*asyncore @giampaolo
134-
**/*asynchat @giampaolo
135133
**/*ftplib @giampaolo
136134
**/*shutil @giampaolo
137135

Doc/library/asynchat.rst

-213
This file was deleted.

0 commit comments

Comments
 (0)
  翻译: