mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
gh-87526: Remove dead initialization from _zoneinfo parse_abbr() (#24700)
This commit is contained in:
parent
f0f5bb3204
commit
3c2992e58b
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue