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 6aa2cae commit 8caf942Copy full SHA for 8caf942
Modules/binascii.c
@@ -245,7 +245,7 @@ static const _Py_ALIGNED_DEF(64, unsigned char) table_b2a_base85_a85[] =
245
#define BASE85_A85_Y 0x20202020
246
247
248
-static const unsigned char table_a2b_base32[] Py_ALIGNED(64) = {
+static const _Py_ALIGNED_DEF(64, unsigned char) table_a2b_base32[] = {
249
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
250
251
@@ -265,7 +265,7 @@ static const unsigned char table_a2b_base32[] Py_ALIGNED(64) = {
265
266
};
267
268
-static const unsigned char table_b2a_base32[] Py_ALIGNED(64) =
+static const _Py_ALIGNED_DEF(64, unsigned char) table_b2a_base32[] =
269
"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";
270
271
#define BASE32_PAD '='
0 commit comments