closes bpo-39898: Remove unused arg from append_formattedvalue. (GH-18840)

This commit is contained in:
Andy Lester
2020-03-08 11:53:59 -05:00
committed by GitHub
parent db283b32e7
commit 28ca43b7e3

View File

@@ -15,7 +15,7 @@ append_ast_expr(_PyUnicodeWriter *writer, expr_ty e, int level);
static int static int
append_joinedstr(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec); append_joinedstr(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec);
static int static int
append_formattedvalue(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec); append_formattedvalue(_PyUnicodeWriter *writer, expr_ty e);
static int static int
append_ast_slice(_PyUnicodeWriter *writer, slice_ty slice); append_ast_slice(_PyUnicodeWriter *writer, slice_ty slice);
@@ -583,7 +583,7 @@ append_fstring_element(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec)
case JoinedStr_kind: case JoinedStr_kind:
return append_joinedstr(writer, e, is_format_spec); return append_joinedstr(writer, e, is_format_spec);
case FormattedValue_kind: case FormattedValue_kind:
return append_formattedvalue(writer, e, is_format_spec); return append_formattedvalue(writer, e);
default: default:
PyErr_SetString(PyExc_SystemError, PyErr_SetString(PyExc_SystemError,
"unknown expression kind inside f-string"); "unknown expression kind inside f-string");
@@ -640,7 +640,7 @@ append_joinedstr(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec)
} }
static int static int
append_formattedvalue(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec) append_formattedvalue(_PyUnicodeWriter *writer, expr_ty e)
{ {
const char *conversion; const char *conversion;
const char *outer_brace = "{"; const char *outer_brace = "{";
@@ -870,7 +870,7 @@ append_ast_expr(_PyUnicodeWriter *writer, expr_ty e, int level)
case JoinedStr_kind: case JoinedStr_kind:
return append_joinedstr(writer, e, false); return append_joinedstr(writer, e, false);
case FormattedValue_kind: case FormattedValue_kind:
return append_formattedvalue(writer, e, false); return append_formattedvalue(writer, e);
/* The following exprs can be assignment targets. */ /* The following exprs can be assignment targets. */
case Attribute_kind: case Attribute_kind:
return append_ast_attribute(writer, e); return append_ast_attribute(writer, e);