mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
gh-99706: unicodeobject: Fix padding in PyASCIIObject.state
(GH-99707)
This commit is contained in:
parent
c24397a108
commit
b4d54a332e
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ typedef struct {
|
|||
unsigned int ascii:1;
|
||||
/* Padding to ensure that PyUnicode_DATA() is always aligned to
|
||||
4 bytes (see issue #19537 on m68k). */
|
||||
unsigned int :25;
|
||||
unsigned int :26;
|
||||
} state;
|
||||
} PyASCIIObject;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue