Skip to content

Commit

Permalink
bpo-36642: make unicodedata const (pythonGH-12855)
Browse files Browse the repository at this point in the history
  • Loading branch information
methane authored Apr 16, 2019
1 parent 926b0cb commit 6fec905
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Modules/unicodedata.c
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ _getucname(PyObject *self, Py_UCS4 code, char* buffer, int buflen,
int offset;
int i;
int word;
unsigned char* w;
const unsigned char* w;

if (code >= 0x110000)
return 0;
Expand Down
18 changes: 9 additions & 9 deletions Modules/unicodedata_db.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Modules/unicodename_db.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define NAME_MAXLEN 256

/* lexicon */
static unsigned char lexicon[] = {
static const unsigned char lexicon[] = {
76, 69, 84, 84, 69, 210, 83, 73, 71, 206, 87, 73, 84, 200, 83, 77, 65,
76, 204, 83, 89, 76, 76, 65, 66, 76, 197, 67, 65, 80, 73, 84, 65, 204,
72, 73, 69, 82, 79, 71, 76, 89, 80, 200, 76, 65, 84, 73, 206, 65, 82, 65,
Expand Down Expand Up @@ -6442,7 +6442,7 @@ static unsigned char lexicon[] = {
45, 68, 90, 85, 196, 45, 67, 72, 65, 210, 45, 67, 72, 65, 76, 128,
};

static unsigned int lexicon_offset[] = {
static const unsigned int lexicon_offset[] = {
0, 0, 6, 10, 14, 19, 27, 34, 44, 49, 55, 64, 66, 69, 81, 89, 102, 108,
113, 118, 124, 129, 137, 146, 157, 162, 167, 170, 174, 183, 189, 195,
201, 206, 214, 221, 229, 171, 232, 241, 242, 250, 256, 261, 266, 273,
Expand Down Expand Up @@ -8012,7 +8012,7 @@ static unsigned int lexicon_offset[] = {
/* code->name phrasebook */
#define phrasebook_shift 7
#define phrasebook_short 194
static unsigned char phrasebook[] = {
static const unsigned char phrasebook[] = {
0, 205, 148, 236, 89, 78, 211, 61, 78, 31, 55, 239, 9, 55, 213, 44, 55,
251, 110, 251, 29, 50, 213, 139, 53, 213, 139, 250, 178, 98, 55, 244,
158, 231, 5, 234, 216, 204, 226, 205, 177, 17, 195, 79, 17, 100, 17, 102,
Expand Down Expand Up @@ -19073,7 +19073,7 @@ static unsigned char phrasebook[] = {
73, 241, 124, 152, 154,
};

static unsigned short phrasebook_offset1[] = {
static const unsigned short phrasebook_offset1[] = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
Expand Down Expand Up @@ -19696,7 +19696,7 @@ static unsigned short phrasebook_offset1[] = {
104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
};

static unsigned int phrasebook_offset2[] = {
static const unsigned int phrasebook_offset2[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 6, 9, 11, 14, 17, 19, 21, 24, 27, 29, 31,
33, 35, 39, 41, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 69, 72,
Expand Down Expand Up @@ -23496,7 +23496,7 @@ static unsigned int phrasebook_offset2[] = {
};

/* name->code dictionary */
static unsigned int code_hash[] = {
static const unsigned int code_hash[] = {
74224, 4851, 0, 0, 0, 0, 7929, 0, 0, 0, 0, 127931, 0, 42833, 983091,
12064, 0, 129548, 194597, 69850, 65842, 0, 0, 0, 78159, 68476, 72392,
1373, 0, 0, 5816, 0, 0, 4231, 0, 0, 4233, 4234, 4232, 68885, 70351, 0,
Expand Down
4 changes: 2 additions & 2 deletions Objects/unicodetype_db.h
Original file line number Diff line number Diff line change
Expand Up @@ -1750,7 +1750,7 @@ const Py_UCS4 _PyUnicode_ExtendedCase[] = {

/* type indexes */
#define SHIFT 7
static unsigned short index1[] = {
static const unsigned short index1[] = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 34, 35, 36, 37,
38, 39, 34, 34, 34, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
Expand Down Expand Up @@ -2359,7 +2359,7 @@ static unsigned short index1[] = {
126, 126, 126, 126, 126, 126, 126, 269,
};

static unsigned short index2[] = {
static const unsigned short index2[] = {
1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 3, 3, 3, 2, 4, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 6, 5,
7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 6, 5, 5, 5, 5, 5, 5, 17, 17, 17, 17,
Expand Down
2 changes: 1 addition & 1 deletion Tools/unicode/makeunicodedata.py
Original file line number Diff line number Diff line change
Expand Up @@ -1249,7 +1249,7 @@ def dump(self, file, trace=0):
size = getsize(self.data)
if trace:
print(self.name+":", size*len(self.data), "bytes", file=sys.stderr)
file.write("static ")
file.write("static const ")
if size == 1:
file.write("unsigned char")
elif size == 2:
Expand Down

0 comments on commit 6fec905

Please sign in to comment.