mirror of
https://github.com/python/cpython.git
synced 2025-10-31 21:51:50 +00:00
bpo-39353: Deprecate the binhex module (GH-18025)
Deprecate binhex4 and hexbin4 standards. Deprecate the binhex module and the following binascii functions: * b2a_hqx(), a2b_hqx() * rlecode_hqx(), rledecode_hqx() * crc_hqx()
This commit is contained in:
parent
14d80d0b60
commit
beea26b57e
9 changed files with 120 additions and 25 deletions
|
|
@ -3,10 +3,12 @@
|
|||
Uses the mechanism of the python binhex module
|
||||
Based on an original test by Roger E. Masse.
|
||||
"""
|
||||
import binhex
|
||||
import unittest
|
||||
from test import support
|
||||
|
||||
with support.check_warnings(('', DeprecationWarning)):
|
||||
import binhex
|
||||
|
||||
|
||||
class BinHexTestCase(unittest.TestCase):
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue