summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2021-05-19 18:12:19 (GMT)
committerGitHub <noreply@github.com>2021-05-19 18:12:19 (GMT)
commitf13a6a2d671e158ca1af7ad0d47369ad50e9c21a (patch)
tree45107d9a995abd468a2379aa785540dc530c9e32 /Python
parent95d04710c5fb0df5393b5add2c5c2de2412673eb (diff)
downloadcpython-f13a6a2d671e158ca1af7ad0d47369ad50e9c21a.zip
cpython-f13a6a2d671e158ca1af7ad0d47369ad50e9c21a.tar.gz
cpython-f13a6a2d671e158ca1af7ad0d47369ad50e9c21a.tar.bz2
Remove unused function in ceval.c (GH-26246)
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