Open sebkopf opened 3 years ago
omit names for all parameters that are named NULL,
NULL
e.g. iso_format(NULL = "test", b = 42, NULL = 5) currently makes "NULL: test\nb: 42\nNULL: 5" when it should instead make "test\nb: 42\n5" by omitting the names of the parameters named NULL.
iso_format(NULL = "test", b = 42, NULL = 5)
"NULL: test\nb: 42\nNULL: 5"
"test\nb: 42\n5"
omit names for all parameters that are named
NULL
,e.g.
iso_format(NULL = "test", b = 42, NULL = 5)
currently makes"NULL: test\nb: 42\nNULL: 5"
when it should instead make"test\nb: 42\n5"
by omitting the names of the parameters named NULL.