8000 GH-103092: isolate `pyexpat` (#104506) · python/cpython@20e994c · GitHub
[go: up one dir, main page]

Skip to content

Commit 20e994c

Browse files
GH-103092: isolate pyexpat (#104506)
1 parent 5e9f471 commit 20e994c

File tree

2 files changed

+2 8000 1
-9
lines changed

2 files changed

+21
-9
lines changed

Modules/pyexpat.c

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,26 +1076,39 @@ static struct PyMethodDef xmlparse_methods[] = {
10761076
Make it as simple as possible.
10771077
*/
10781078

1079+
static const unsigned char template_buffer[256] =
1080+
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
1081+
20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
1082+
38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
1083+
56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
1084+
74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
1085+
92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
1086+
108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122,
1087+
123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137,
1088+
138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152,
1089+
153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167,
1090+
168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182,
1091+
183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197,
1092+
198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212,
1093+
213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227,
1094+
228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242,
1095+
243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255};
1096+
1097+
10791098
static int
10801099
PyUnknownEncodingHandler(void *encodingHandlerData,
10811100
const XML_Char *name,
10821101
XML_Encoding *info)
10831102
{
1084-
static unsigned char template_buffer[256] = {0};
1085-
PyObject* u;
1103+
PyObject *u;
10861104
int i;
10871105
const void *data;
10881106
int kind;
10891107

10901108
if (PyErr_Occurred())
10911109
return XML_STATUS_ERROR;
10921110

109 8000 3-
if (template_buffer[1] == 0) {
1094-
for (i = 0; i < 256; i++)
1095-
template_buffer[i] = i;
1096-
}
1097-
1098-
u = PyUnicode_Decode((char*) template_buffer, 256, name, "replace");
1111+
u = PyUnicode_Decode((const char*) template_buffer, 256, name, "replace");
10991112
if (u == NULL || PyUnicode_READY(u)) {
11001113
Py_XDECREF(u);
11011114
return XML_STATUS_ERROR;

Tools/c-analyzer/cpython/globals-to-fix.tsv

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,6 @@ Modules/_tkinter.c - trbInCmd -
458458

459459
## pre-allocated buffer
460460
Modules/nismodule.c nisproc_maplist_2 res -
461-
Modules/pyexpat.c PyUnknownEncodingHandler template_buffer -
462461

463462
## other
464463
Include/datetime.h - PyDateTimeAPI -

0 commit comments

Comments
 (0)
0