We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f0cf32 commit 7997d57Copy full SHA for 7997d57
Include/cpython/unicodeobject.h
@@ -135,7 +135,7 @@ typedef struct {
135
unsigned int ascii:1;
136
/* Padding to ensure that PyUnicode_DATA() is always aligned to
137
4 bytes (see issue #19537 on m68k). */
138
- unsigned int :26;
+ unsigned int :25;
139
} state;
140
} PyASCIIObject;
141
Include/internal/pycore_typeobject.h
@@ -35,8 +35,7 @@ struct type_cache_entry {
35
PyObject *value; // borrowed reference or NULL
36
};
37
38
-// TODO(eelizondo): Windows builds fail with 12 temporarily remove
39
-#define MCACHE_SIZE_EXP 11
+#define MCACHE_SIZE_EXP 12
40
41
struct type_cache {
42
struct type_cache_entry hashtable[1 << MCACHE_SIZE_EXP];
0 commit comments