Skip to content

Commit 13dcebe

Browse files
committed
bpo-43360: Remove dead initialization from parse_abbr function
1 parent a347bc0 commit 13dcebe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_zoneinfo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@ static Py_ssize_t
15881588
parse_abbr(const char *const p, PyObject **abbr)
15891589
{
15901590
const char *ptr = p;
1591-
char buff = *ptr;
1591+
char buff;
15921592
const char *str_start;
15931593
const char *str_end;
15941594

0 commit comments

Comments
 (0)