summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index fa7b0b5..744e2fe 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -4816,15 +4816,6 @@ skip_to_next_entry(unsigned char *p, unsigned char *end) {
return p;
}
-static inline unsigned char *
-parse_range(unsigned char *p, int *start, int*end)
-{
- p = parse_varint(p, start);
- int size;
- p = parse_varint(p, &size);
- *end = *start + size;
- return p;
-}
#define MAX_LINEAR_SEARCH 40