cpython/Lib/test/libregrtest
Victor Stinner 9bf2cbc4c4
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
2021-11-16 00:29:17 +01:00
..
__init__.py
cmdline.py bpo-45745: Remove regrtest --findleaks options (GH-29514) 2021-11-12 16:19:09 +01:00
main.py bpo-45745: Remove regrtest --findleaks options (GH-29514) 2021-11-12 16:19:09 +01:00
pgo.py bpo-10572: Fixup Lib/test/libregrtest/pgo.py (GH-29327) 2021-11-01 09:57:28 +00:00
refleak.py bpo-45410: regrtest -W leaves stdout/err FD unchanged (GH-28915) 2021-10-13 14:08:18 +02:00
runtest.py bpo-45745: Remove regrtest --findleaks options (GH-29514) 2021-11-12 16:19:09 +01:00
runtest_mp.py bpo-45410: regrtest -W leaves stdout/err FD unchanged (GH-28915) 2021-10-13 14:08:18 +02:00
save_env.py bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521) 2021-11-16 00:29:17 +01:00
setup.py bpo-43592: Raise RLIMIT_NOFILE in test.libregrtest (GH-29127) 2021-10-21 18:22:25 -07:00
utils.py bpo-45410: regrtest -W leaves stdout/err FD unchanged (GH-28915) 2021-10-13 14:08:18 +02:00
win_utils.py