Skip to content

Commit 7997d57

Browse files
Windows fix
1 parent 6f0cf32 commit 7997d57

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Include/cpython/unicodeobject.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ typedef struct {
135135
unsigned int ascii:1;
136136
/* Padding to ensure that PyUnicode_DATA() is always aligned to
137137
4 bytes (see issue #19537 on m68k). */
138-
unsigned int :26;
138+
unsigned int :25;
139139
} state;
140140
} PyASCIIObject;
141141

Include/internal/pycore_typeobject.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ struct type_cache_entry {
3535
PyObject *value; // borrowed reference or NULL
3636
};
3737

38-
// TODO(eelizondo): Windows builds fail with 12 temporarily remove
39-
#define MCACHE_SIZE_EXP 11
38+
#define MCACHE_SIZE_EXP 12
4039

4140
struct type_cache {
4241
struct type_cache_entry hashtable[1 << MCACHE_SIZE_EXP];

0 commit comments

Comments
 (0)