mirror of https://github.com/python/cpython
gh-87526: Remove dead initialization from _zoneinfo parse_abbr() (#24700)
This commit is contained in:
parent
f0f5bb3204
commit
3c2992e58b
|
@ -1709,11 +1709,11 @@ static Py_ssize_t
|
|||
parse_abbr(const char *const p, PyObject **abbr)
|
||||
{
|
||||
const char *ptr = p;
|
||||
char buff = *ptr;
|
||||
const char *str_start;
|
||||
const char *str_end;
|
||||
|
||||
if (*ptr == '<') {
|
||||
char buff;
|
||||
ptr++;
|
||||
str_start = ptr;
|
||||
while ((buff = *ptr) != '>') {
|
||||
|
|
Loading…
Reference in New Issue