Skip to content

Commit f13a6a2

Browse files
authored
Remove unused function in ceval.c (GH-26246)
1 parent 95d0471 commit f13a6a2

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

Python/ceval.c

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4816,15 +4816,6 @@ skip_to_next_entry(unsigned char *p, unsigned char *end) {
48164816
return p;
48174817
}
48184818

4819-
static inline unsigned char *
4820-
parse_range(unsigned char *p, int *start, int*end)
4821-
{
4822-
p = parse_varint(p, start);
4823-
int size;
4824-
p = parse_varint(p, &size);
4825-
*end = *start + size;
4826-
return p;
4827-
}
48284819

48294820
#define MAX_LINEAR_SEARCH 40
48304821

0 commit comments

Comments
 (0)