We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1abf3dd commit 4444158Copy full SHA for 4444158
1 file changed
Lib/test/test_binascii.py
@@ -84,13 +84,6 @@ def test_constants(self):
84
b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
85
b'.-:+=^!/*?&<>()[]{}@%$#')
86
87
- for name in ('BASE85_ALPHABET', 'ASCII85_ALPHABET',
88
- 'Z85_ALPHABET'):
89
- value = getattr(binascii, name)
90
- self.assertIsInstance(value, bytes)
91
- self.assertEqual(len(value), 85)
92
- self.assertEqual(len(set(value)), 85)
93
-
94
def test_functions(self):
95
# Check presence of all functions
96
for name in all_functions:
0 commit comments