mirror of
https://github.com/python/cpython.git
synced 2025-10-31 21:51:50 +00:00
[3.9] bpo-47061: document module deprecations due to PEP 594 (GH-31984) (GH-32082)
Also removed asynchat, asyncore, and smtpd from their respective toctree entries so they are only in the superceded subtree.
(cherry picked from commit 9ac2de922a)
Co-authored-by: Brett Cannon <brett@python.org>
Automerge-Triggered-By: GH:brettcannon
This commit is contained in:
parent
0bbb6956f8
commit
e513b8188a
27 changed files with 97 additions and 22 deletions
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
.. module:: aifc
|
.. module:: aifc
|
||||||
:synopsis: Read and write audio files in AIFF or AIFC format.
|
:synopsis: Read and write audio files in AIFF or AIFC format.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
**Source code:** :source:`Lib/aifc.py`
|
**Source code:** :source:`Lib/aifc.py`
|
||||||
|
|
||||||
|
|
@ -11,6 +12,10 @@
|
||||||
single: AIFF
|
single: AIFF
|
||||||
single: AIFF-C
|
single: AIFF-C
|
||||||
|
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`aifc` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
This module provides support for reading and writing AIFF and AIFF-C files.
|
This module provides support for reading and writing AIFF and AIFF-C files.
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,10 @@
|
||||||
|
|
||||||
.. module:: audioop
|
.. module:: audioop
|
||||||
:synopsis: Manipulate raw audio data.
|
:synopsis: Manipulate raw audio data.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`audioop` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
.. module:: cgi
|
.. module:: cgi
|
||||||
:synopsis: Helpers for running Python scripts via the Common Gateway Interface.
|
:synopsis: Helpers for running Python scripts via the Common Gateway Interface.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
**Source code:** :source:`Lib/cgi.py`
|
**Source code:** :source:`Lib/cgi.py`
|
||||||
|
|
||||||
|
|
@ -14,6 +15,9 @@
|
||||||
single: URL
|
single: URL
|
||||||
single: Common Gateway Interface
|
single: Common Gateway Interface
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`cgi` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
Support module for Common Gateway Interface (CGI) scripts.
|
Support module for Common Gateway Interface (CGI) scripts.
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
.. module:: cgitb
|
.. module:: cgitb
|
||||||
:synopsis: Configurable traceback handler for CGI scripts.
|
:synopsis: Configurable traceback handler for CGI scripts.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
.. moduleauthor:: Ka-Ping Yee <ping@lfw.org>
|
.. moduleauthor:: Ka-Ping Yee <ping@lfw.org>
|
||||||
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
|
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
|
||||||
|
|
@ -15,6 +16,9 @@
|
||||||
single: exceptions; in CGI scripts
|
single: exceptions; in CGI scripts
|
||||||
single: tracebacks; in CGI scripts
|
single: tracebacks; in CGI scripts
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`cgitb` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
The :mod:`cgitb` module provides a special exception handler for Python scripts.
|
The :mod:`cgitb` module provides a special exception handler for Python scripts.
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
.. module:: chunk
|
.. module:: chunk
|
||||||
:synopsis: Module to read IFF chunks.
|
:synopsis: Module to read IFF chunks.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
.. moduleauthor:: Sjoerd Mullender <sjoerd@acm.org>
|
.. moduleauthor:: Sjoerd Mullender <sjoerd@acm.org>
|
||||||
.. sectionauthor:: Sjoerd Mullender <sjoerd@acm.org>
|
.. sectionauthor:: Sjoerd Mullender <sjoerd@acm.org>
|
||||||
|
|
@ -16,6 +17,9 @@
|
||||||
single: Real Media File Format
|
single: Real Media File Format
|
||||||
single: RMFF
|
single: RMFF
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`chunk` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
This module provides an interface for reading files that use EA IFF 85 chunks.
|
This module provides an interface for reading files that use EA IFF 85 chunks.
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
.. module:: crypt
|
.. module:: crypt
|
||||||
:platform: Unix
|
:platform: Unix
|
||||||
:synopsis: The crypt() function used to check Unix passwords.
|
:synopsis: The crypt() function used to check Unix passwords.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
.. moduleauthor:: Steven D. Majewski <sdm7g@virginia.edu>
|
.. moduleauthor:: Steven D. Majewski <sdm7g@virginia.edu>
|
||||||
.. sectionauthor:: Steven D. Majewski <sdm7g@virginia.edu>
|
.. sectionauthor:: Steven D. Majewski <sdm7g@virginia.edu>
|
||||||
|
|
@ -15,6 +16,9 @@
|
||||||
single: crypt(3)
|
single: crypt(3)
|
||||||
pair: cipher; DES
|
pair: cipher; DES
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`crypt` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
This module implements an interface to the :manpage:`crypt(3)` routine, which is
|
This module implements an interface to the :manpage:`crypt(3)` routine, which is
|
||||||
|
|
|
||||||
|
|
@ -13,5 +13,4 @@ that aren't markup languages and are not related to e-mail.
|
||||||
csv.rst
|
csv.rst
|
||||||
configparser.rst
|
configparser.rst
|
||||||
netrc.rst
|
netrc.rst
|
||||||
xdrlib.rst
|
|
||||||
plistlib.rst
|
plistlib.rst
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,13 @@
|
||||||
|
|
||||||
.. module:: imghdr
|
.. module:: imghdr
|
||||||
:synopsis: Determine the type of image contained in a file or byte stream.
|
:synopsis: Determine the type of image contained in a file or byte stream.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
**Source code:** :source:`Lib/imghdr.py`
|
**Source code:** :source:`Lib/imghdr.py`
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`imghdr` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
The :mod:`imghdr` module determines the type of image contained in a file or
|
The :mod:`imghdr` module determines the type of image contained in a file or
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,6 @@ is currently supported on most popular platforms. Here is an overview:
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
|
||||||
webbrowser.rst
|
webbrowser.rst
|
||||||
cgi.rst
|
|
||||||
cgitb.rst
|
|
||||||
wsgiref.rst
|
wsgiref.rst
|
||||||
urllib.rst
|
urllib.rst
|
||||||
urllib.request.rst
|
urllib.request.rst
|
||||||
|
|
@ -33,10 +31,7 @@ is currently supported on most popular platforms. Here is an overview:
|
||||||
ftplib.rst
|
ftplib.rst
|
||||||
poplib.rst
|
poplib.rst
|
||||||
imaplib.rst
|
imaplib.rst
|
||||||
nntplib.rst
|
|
||||||
smtplib.rst
|
smtplib.rst
|
||||||
smtpd.rst
|
|
||||||
telnetlib.rst
|
|
||||||
uuid.rst
|
uuid.rst
|
||||||
socketserver.rst
|
socketserver.rst
|
||||||
http.server.rst
|
http.server.rst
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,5 @@ The list of modules described in this chapter is:
|
||||||
ssl.rst
|
ssl.rst
|
||||||
select.rst
|
select.rst
|
||||||
selectors.rst
|
selectors.rst
|
||||||
asyncore.rst
|
|
||||||
asynchat.rst
|
|
||||||
signal.rst
|
signal.rst
|
||||||
mmap.rst
|
mmap.rst
|
||||||
|
|
|
||||||
|
|
@ -11,12 +11,5 @@ discretion of the installation. Here's an overview:
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
|
||||||
audioop.rst
|
|
||||||
aifc.rst
|
|
||||||
sunau.rst
|
|
||||||
wave.rst
|
wave.rst
|
||||||
chunk.rst
|
|
||||||
colorsys.rst
|
colorsys.rst
|
||||||
imghdr.rst
|
|
||||||
sndhdr.rst
|
|
||||||
ossaudiodev.rst
|
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
.. module:: msilib
|
.. module:: msilib
|
||||||
:platform: Windows
|
:platform: Windows
|
||||||
:synopsis: Creation of Microsoft Installer files, and CAB files.
|
:synopsis: Creation of Microsoft Installer files, and CAB files.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
.. moduleauthor:: Martin v. Löwis <martin@v.loewis.de>
|
.. moduleauthor:: Martin v. Löwis <martin@v.loewis.de>
|
||||||
.. sectionauthor:: Martin v. Löwis <martin@v.loewis.de>
|
.. sectionauthor:: Martin v. Löwis <martin@v.loewis.de>
|
||||||
|
|
@ -12,6 +13,9 @@
|
||||||
|
|
||||||
.. index:: single: msi
|
.. index:: single: msi
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`msilib` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
The :mod:`msilib` supports the creation of Microsoft Installer (``.msi``) files.
|
The :mod:`msilib` supports the creation of Microsoft Installer (``.msi``) files.
|
||||||
|
|
|
||||||
|
|
@ -20,4 +20,3 @@ on the Internet.
|
||||||
binhex.rst
|
binhex.rst
|
||||||
binascii.rst
|
binascii.rst
|
||||||
quopri.rst
|
quopri.rst
|
||||||
uu.rst
|
|
||||||
|
|
|
||||||
|
|
@ -5,10 +5,14 @@
|
||||||
.. module:: nis
|
.. module:: nis
|
||||||
:platform: Unix
|
:platform: Unix
|
||||||
:synopsis: Interface to Sun's NIS (Yellow Pages) library.
|
:synopsis: Interface to Sun's NIS (Yellow Pages) library.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
.. moduleauthor:: Fred Gansevles <Fred.Gansevles@cs.utwente.nl>
|
.. moduleauthor:: Fred Gansevles <Fred.Gansevles@cs.utwente.nl>
|
||||||
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
|
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`nis` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
The :mod:`nis` module gives a thin wrapper around the NIS library, useful for
|
The :mod:`nis` module gives a thin wrapper around the NIS library, useful for
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
.. module:: nntplib
|
.. module:: nntplib
|
||||||
:synopsis: NNTP protocol client (requires sockets).
|
:synopsis: NNTP protocol client (requires sockets).
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
**Source code:** :source:`Lib/nntplib.py`
|
**Source code:** :source:`Lib/nntplib.py`
|
||||||
|
|
||||||
|
|
@ -10,6 +11,9 @@
|
||||||
pair: NNTP; protocol
|
pair: NNTP; protocol
|
||||||
single: Network News Transfer Protocol
|
single: Network News Transfer Protocol
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`nntplib` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
This module defines the class :class:`NNTP` which implements the client side of
|
This module defines the class :class:`NNTP` which implements the client side of
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,10 @@
|
||||||
.. module:: ossaudiodev
|
.. module:: ossaudiodev
|
||||||
:platform: Linux, FreeBSD
|
:platform: Linux, FreeBSD
|
||||||
:synopsis: Access to OSS-compatible audio devices.
|
:synopsis: Access to OSS-compatible audio devices.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`ossaudiodev` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,15 @@
|
||||||
.. module:: pipes
|
.. module:: pipes
|
||||||
:platform: Unix
|
:platform: Unix
|
||||||
:synopsis: A Python interface to Unix shell pipelines.
|
:synopsis: A Python interface to Unix shell pipelines.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
|
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
|
||||||
|
|
||||||
**Source code:** :source:`Lib/pipes.py`
|
**Source code:** :source:`Lib/pipes.py`
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`pipes` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
The :mod:`pipes` module defines a class to abstract the concept of a *pipeline*
|
The :mod:`pipes` module defines a class to abstract the concept of a *pipeline*
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
.. module:: sndhdr
|
.. module:: sndhdr
|
||||||
:synopsis: Determine type of a sound file.
|
:synopsis: Determine type of a sound file.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
|
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
|
||||||
.. Based on comments in the module source file.
|
.. Based on comments in the module source file.
|
||||||
|
|
@ -13,6 +14,9 @@
|
||||||
single: A-LAW
|
single: A-LAW
|
||||||
single: u-LAW
|
single: u-LAW
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`sndhdr` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
The :mod:`sndhdr` provides utility functions which attempt to determine the type
|
The :mod:`sndhdr` provides utility functions which attempt to determine the type
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,10 @@
|
||||||
.. module:: spwd
|
.. module:: spwd
|
||||||
:platform: Unix
|
:platform: Unix
|
||||||
:synopsis: The shadow password database (getspnam() and friends).
|
:synopsis: The shadow password database (getspnam() and friends).
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`spwd` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,15 @@
|
||||||
|
|
||||||
.. module:: sunau
|
.. module:: sunau
|
||||||
:synopsis: Provide an interface to the Sun AU sound format.
|
:synopsis: Provide an interface to the Sun AU sound format.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
|
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
|
||||||
|
|
||||||
**Source code:** :source:`Lib/sunau.py`
|
**Source code:** :source:`Lib/sunau.py`
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`sunau` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
The :mod:`sunau` module provides a convenient interface to the Sun AU sound
|
The :mod:`sunau` module provides a convenient interface to the Sun AU sound
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,26 @@ backwards compatibility. They have been superseded by other modules.
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
|
||||||
|
aifc.rst
|
||||||
asynchat.rst
|
asynchat.rst
|
||||||
asyncore.rst
|
asyncore.rst
|
||||||
smtpd.rst
|
audioop.rst
|
||||||
|
cgi.rst
|
||||||
|
cgitb.rst
|
||||||
|
chunk.rst
|
||||||
|
crypt.rst
|
||||||
|
imghdr.rst
|
||||||
imp.rst
|
imp.rst
|
||||||
|
msilib.rst
|
||||||
|
nntplib.rst
|
||||||
|
nis.rst
|
||||||
optparse.rst
|
optparse.rst
|
||||||
|
ossaudiodev.rst
|
||||||
|
pipes.rst
|
||||||
|
smtpd.rst
|
||||||
|
sndhdr.rst
|
||||||
|
spwd.rst
|
||||||
|
sunau.rst
|
||||||
|
telnetlib.rst
|
||||||
|
uu.rst
|
||||||
|
xdrlib.rst
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
.. module:: telnetlib
|
.. module:: telnetlib
|
||||||
:synopsis: Telnet client class.
|
:synopsis: Telnet client class.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
.. sectionauthor:: Skip Montanaro <skip@pobox.com>
|
.. sectionauthor:: Skip Montanaro <skip@pobox.com>
|
||||||
|
|
||||||
|
|
@ -10,6 +11,9 @@
|
||||||
|
|
||||||
.. index:: single: protocol; Telnet
|
.. index:: single: protocol; Telnet
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`telnetlib` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
The :mod:`telnetlib` module provides a :class:`Telnet` class that implements the
|
The :mod:`telnetlib` module provides a :class:`Telnet` class that implements the
|
||||||
|
|
|
||||||
|
|
@ -13,14 +13,10 @@ of it. Here's an overview:
|
||||||
|
|
||||||
posix.rst
|
posix.rst
|
||||||
pwd.rst
|
pwd.rst
|
||||||
spwd.rst
|
|
||||||
grp.rst
|
grp.rst
|
||||||
crypt.rst
|
|
||||||
termios.rst
|
termios.rst
|
||||||
tty.rst
|
tty.rst
|
||||||
pty.rst
|
pty.rst
|
||||||
fcntl.rst
|
fcntl.rst
|
||||||
pipes.rst
|
|
||||||
resource.rst
|
resource.rst
|
||||||
nis.rst
|
|
||||||
syslog.rst
|
syslog.rst
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,15 @@
|
||||||
|
|
||||||
.. module:: uu
|
.. module:: uu
|
||||||
:synopsis: Encode and decode files in uuencode format.
|
:synopsis: Encode and decode files in uuencode format.
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
.. moduleauthor:: Lance Ellinghouse
|
.. moduleauthor:: Lance Ellinghouse
|
||||||
|
|
||||||
**Source code:** :source:`Lib/uu.py`
|
**Source code:** :source:`Lib/uu.py`
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`uu` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
This module encodes and decodes files in uuencode format, allowing arbitrary
|
This module encodes and decodes files in uuencode format, allowing arbitrary
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,6 @@ This chapter describes modules that are only available on MS Windows platforms.
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
|
||||||
msilib.rst
|
|
||||||
msvcrt.rst
|
msvcrt.rst
|
||||||
winreg.rst
|
winreg.rst
|
||||||
winsound.rst
|
winsound.rst
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
.. module:: xdrlib
|
.. module:: xdrlib
|
||||||
:synopsis: Encoders and decoders for the External Data Representation (XDR).
|
:synopsis: Encoders and decoders for the External Data Representation (XDR).
|
||||||
|
:deprecated:
|
||||||
|
|
||||||
**Source code:** :source:`Lib/xdrlib.py`
|
**Source code:** :source:`Lib/xdrlib.py`
|
||||||
|
|
||||||
|
|
@ -10,6 +11,9 @@
|
||||||
single: XDR
|
single: XDR
|
||||||
single: External Data Representation
|
single: External Data Representation
|
||||||
|
|
||||||
|
.. deprecated:: 3.11
|
||||||
|
The :mod:`xdrlib` module is deprecated (see :pep:`594` for details).
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
The :mod:`xdrlib` module supports the External Data Representation Standard as
|
The :mod:`xdrlib` module supports the External Data Representation Standard as
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
Deprecate the various modules listed by :pep:`594`:
|
||||||
|
|
||||||
|
aifc, asynchat, asyncore, audioop, cgi, cgitb, chunk, crypt,
|
||||||
|
imghdr, msilib, nntplib, nis, ossaudiodev, pipes, smtpd,
|
||||||
|
sndhdr, spwd, sunau, telnetlib, uu, xdrlib
|
||||||
Loading…
Add table
Add a link
Reference in a new issue