bpo-45085: Remove the binhex module (GH-28117)

The binhex module, deprecated in Python 3.9, is now removed. The
following binascii functions, deprecated in Python 3.9, are now also
removed:

* a2b_hqx(), b2a_hqx();
* rlecode_hqx(), rledecode_hqx().

The binascii.crc_hqx() function remains available.
This commit is contained in:
Victor Stinner 2021-09-02 12:10:08 +02:00 committed by GitHub
parent d589a7e7eb
commit a806608705
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 30 additions and 1297 deletions

View file

@ -53,7 +53,6 @@
<Compile Include="asyncore.py" />
<Compile Include="base64.py" />
<Compile Include="bdb.py" />
<Compile Include="binhex.py" />
<Compile Include="bisect.py" />
<Compile Include="bz2.py" />
<Compile Include="calendar.py" />
@ -894,7 +893,6 @@
<Compile Include="test\test_bigaddrspace.py" />
<Compile Include="test\test_bigmem.py" />
<Compile Include="test\test_binascii.py" />
<Compile Include="test\test_binhex.py" />
<Compile Include="test\test_binop.py" />
<Compile Include="test\test_bisect.py" />
<Compile Include="test\test_bool.py" />