diff options
author | Victor Stinner <vstinner@python.org> | 2023-05-25 15:59:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-25 15:59:00 (GMT) |
commit | f66be6b11a0329e90cb0630c24fd8b07ce6b5c7c (patch) | |
tree | d76024eb76ae73d937a3871540f89ab094272714 /PC | |
parent | 036da3bd43aa2593d17d2fb73d4794f9965c577d (diff) | |
download | cpython-f66be6b11a0329e90cb0630c24fd8b07ce6b5c7c.zip cpython-f66be6b11a0329e90cb0630c24fd8b07ce6b5c7c.tar.gz cpython-f66be6b11a0329e90cb0630c24fd8b07ce6b5c7c.tar.bz2 |
gh-104773: PEP 594: Remove the audioop module (#104937)
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c index 9d0fe6f..88f6975 100644 --- a/PC/config.c +++ b/PC/config.c @@ -7,7 +7,6 @@ extern PyObject* PyInit__abc(void); extern PyObject* PyInit_array(void); -extern PyObject* PyInit_audioop(void); extern PyObject* PyInit_binascii(void); extern PyObject* PyInit_cmath(void); extern PyObject* PyInit_errno(void); @@ -89,7 +88,6 @@ struct _inittab _PyImport_Inittab[] = { {"_abc", PyInit__abc}, {"array", PyInit_array}, {"_ast", PyInit__ast}, - {"audioop", PyInit_audioop}, {"binascii", PyInit_binascii}, {"cmath", PyInit_cmath}, {"errno", PyInit_errno}, |