Skip to content

Commit a3ba0e7

Browse files
committed
Remove dead variable
1 parent 5a55e24 commit a3ba0e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/bytesobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2490,7 +2490,7 @@ PyObject*
24902490
_PyBytes_FromHex(PyObject *string, int use_bytearray)
24912491
{
24922492
char *buf;
2493-
Py_ssize_t hexlen, invalid_char, real_len=0;
2493+
Py_ssize_t hexlen, invalid_char;
24942494
unsigned int top, bot;
24952495
const Py_UCS1 *str, *end;
24962496
_PyBytesWriter writer;

0 commit comments

Comments
 (0)