Home | History | Annotate | Download | only in Objects

Lines Matching defs:hexlen

2716     Py_ssize_t hexlen, byteslen, i, j;
2719 if (!PyArg_ParseTuple(args, "s#:fromhex", &hex, &hexlen))
2721 byteslen = hexlen/2; /* This overestimates if there are spaces */
2726 for (i = j = 0; i < hexlen; i += 2) {
2730 if (i >= hexlen)