File tree 8 files changed +18
-4
lines changed
8 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 3
3
4
4
.. module :: asynchat
5
5
:synopsis: Support for asynchronous command/response protocols.
6
+ :deprecated:
6
7
7
8
.. moduleauthor :: Sam Rushing <rushing@nightmare.com>
8
9
.. sectionauthor :: Steve Holden <sholden@holdenweb.com>
9
10
10
11
**Source code: ** :source: `Lib/asynchat.py `
11
12
12
13
.. deprecated :: 3.6
14
+ :mod: `asynchat ` will be removed in Python 3.12 (:pep: `594 `).
13
15
Please use :mod: `asyncio ` instead.
14
16
15
17
--------------
Original file line number Diff line number Diff line change 4
4
.. module :: asyncore
5
5
:synopsis: A base class for developing asynchronous socket handling
6
6
services.
7
+ :deprecated:
7
8
8
9
.. moduleauthor :: Sam Rushing <rushing@nightmare.com>
9
10
.. sectionauthor :: Christopher Petrilli <petrilli@amber.org>
13
14
**Source code: ** :source: `Lib/asyncore.py `
14
15
15
16
.. deprecated :: 3.6
17
+ :mod: `asyncore ` will be removed in Python 3.12 (:pep: `594 `).
16
18
Please use :mod: `asyncio ` instead.
17
19
18
20
--------------
Original file line number Diff line number Diff line change 3
3
4
4
.. module :: smtpd
5
5
:synopsis: A SMTP server implementation in Python.
6
+ :deprecated:
6
7
7
8
.. moduleauthor :: Barry Warsaw <barry@python.org>
8
9
.. sectionauthor :: Moshe Zadka <moshez@moshez.org>
14
15
This module offers several classes to implement SMTP (email) servers.
15
16
16
17
.. deprecated :: 3.6
18
+ :mod: `smtpd ` will be removed in Python 3.12 (:pep: `594 `).
17
19
The `aiosmtpd <https://aiosmtpd.readthedocs.io/ >`_ package is a recommended
18
20
replacement for this module. It is based on :mod: `asyncio ` and provides a
19
21
more straightforward API.
Original file line number Diff line number Diff line change @@ -10,5 +10,8 @@ backwards compatibility. They have been superseded by other modules.
10
10
11
11
.. toctree ::
12
12
13
- optparse.rst
13
+ asynchat.rst
14
+ asyncore.rst
15
+ smtpd.rst
14
16
imp.rst
17
+ optparse.rst
Original file line number Diff line number Diff line change 50
50
51
51
from warnings import warn
52
52
warn (
53
- 'The asynchat module is deprecated. '
53
+ 'The asynchat module is deprecated and will be removed in Python 3.12 . '
54
54
'The recommended replacement is asyncio' ,
55
55
DeprecationWarning ,
56
56
stacklevel = 2 )
Original file line number Diff line number Diff line change 58
58
errorcode
59
59
60
60
warnings .warn (
61
- 'The asyncore module is deprecated. '
61
+ 'The asyncore module is deprecated and will be removed in Python 3.12 . '
62
62
'The recommended replacement is asyncio' ,
63
63
DeprecationWarning ,
64
64
stacklevel = 2 )
Original file line number Diff line number Diff line change 93
93
]
94
94
95
95
warn (
96
- 'The smtpd module is deprecated and unmaintained. Please see aiosmtpd '
96
+ 'The smtpd module is deprecated and unmaintained and will be removed '
97
+ 'in Python 3.12. Please see aiosmtpd '
97
98
'(https://aiosmtpd.readthedocs.io/) for the recommended replacement.' ,
98
99
DeprecationWarning ,
99
100
stacklevel = 2 )
Original file line number Diff line number Diff line change
1
+ The :mod: `asynchat `, :mod: `asyncore ` and :mod: `smtpd ` modules have been
2
+ deprecated since at least Python 3.6. Their documentation and deprecation
3
+ warnings and have now been updated to note they will removed in Python 3.12
4
+ (:pep: `594 `).
You can’t perform that action at this time.
0 commit comments