bpo-28533: Remove asyncore, asynchat, smtpd modules · python/cpython@1bf97aa (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
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