closes bpo-39803: Remove unused str from _PyLong_FormatAdvancedWriter. (GH-18709)

This commit is contained in:
Andy Lester
2020-03-01 15:26:43 -06:00
committed by GitHub
parent 217dce9ee6
commit 3fe9117779

View File

@@ -1458,7 +1458,7 @@ _PyLong_FormatAdvancedWriter(_PyUnicodeWriter *writer,
PyObject *format_spec,
Py_ssize_t start, Py_ssize_t end)
{
PyObject *tmp = NULL, *str = NULL;
PyObject *tmp = NULL;
InternalFormatSpec format;
int result = -1;
@@ -1511,7 +1511,6 @@ _PyLong_FormatAdvancedWriter(_PyUnicodeWriter *writer,
done:
Py_XDECREF(tmp);
Py_XDECREF(str);
return result;
}