(original) (raw)
changeset: 103539:1e7b636b6009 user: Benjamin Peterson benjamin@python.org date: Fri Sep 09 20:14:05 2016 -0700 files: Python/formatter_unicode.c description: make invalid_comma_and_underscore a real prototype diff -r 0dca54cc03dd -r 1e7b636b6009 Python/formatter_unicode.c --- a/Python/formatter_unicode.c Fri Sep 09 23:13:01 2016 -0400 +++ b/Python/formatter_unicode.c Fri Sep 09 20:14:05 2016 -0700 @@ -41,7 +41,7 @@ } static void -invalid_comma_and_underscore() +invalid_comma_and_underscore(void) { PyErr_Format(PyExc_ValueError, "Cannot specify both ',' and '_'."); } /benjamin@python.org