bpo-28533: Remove asyncore, asynchat, smtpd modules · python/cpython@1bf97aa (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 1bf97aa

bpo-28533: Remove asyncore, asynchat, smtpd modules

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

File tree

28 files changed

lines changed

28 files changed

lines changed

Lines changed: 0 additions & 2 deletions

Original file line number Diff line number Diff line change
@@ -130,8 +130,6 @@ Lib/ast.py @isidentical
130 130
131 131 **/*typing* @gvanrossum @Fidget-Spinner
132 132
133 -**/*asyncore @giampaolo
134 -**/*asynchat @giampaolo
135 133 **/*ftplib @giampaolo
136 134 **/*shutil @giampaolo
137 135

Lines changed: 0 additions & 213 deletions