diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-10 03:14:05 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-10 03:14:05 (GMT) |
commit | eb0dfa9251102e42bdabcb84de17cecb43537442 (patch) | |
tree | aae700f680309dba4e78b1313ce4fd7778d5104c /Python/formatter_unicode.c | |
parent | d7665ca7a4fc1abef9e0f448cda919bb99b821de (diff) | |
download | cpython-eb0dfa9251102e42bdabcb84de17cecb43537442.zip cpython-eb0dfa9251102e42bdabcb84de17cecb43537442.tar.gz cpython-eb0dfa9251102e42bdabcb84de17cecb43537442.tar.bz2 |
make invalid_comma_and_underscore a real prototype
Diffstat (limited to 'Python/formatter_unicode.c')
-rw-r--r-- | Python/formatter_unicode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index 95c507e..c4a2d9d 100644 --- a/Python/formatter_unicode.c +++ b/Python/formatter_unicode.c @@ -41,7 +41,7 @@ invalid_comma_type(Py_UCS4 presentation_type) } static void -invalid_comma_and_underscore() +invalid_comma_and_underscore(void) { PyErr_Format(PyExc_ValueError, "Cannot specify both ',' and '_'."); } |