[Python-Dev] [Python-checkins] cpython: make invalid_comma_and_underscore a real prototype (original) (raw)
Eric V. Smith eric at trueblade.com
Fri Sep 9 23:31:43 EDT 2016
- Previous message (by thread): [Python-Dev] Changes to PEP 498 (f-strings)
- Next message (by thread): [Python-Dev] PEP520 and absence of __definition_order__
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Oops, thanks Benjamin. That was a copy and paste error.
Eric.
On 9/9/2016 11:15 PM, benjamin.peterson wrote:
https://hg.python.org/cpython/rev/1e7b636b6009 changeset: 103539:1e7b636b6009 user: Benjamin Peterson <benjamin at python.org> date: Fri Sep 09 20:14:05 2016 -0700 summary: make invalidcommaandunderscore a real prototype
files: Python/formatterunicode.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Python/formatterunicode.c b/Python/formatterunicode.c --- a/Python/formatterunicode.c +++ b/Python/formatterunicode.c @@ -41,7 +41,7 @@ } static void -invalidcommaandunderscore() +invalidcommaandunderscore(void) { PyErrFormat(PyExcValueError, "Cannot specify both ',' and ''."); }
Python-checkins mailing list Python-checkins at python.org https://mail.python.org/mailman/listinfo/python-checkins
- Previous message (by thread): [Python-Dev] Changes to PEP 498 (f-strings)
- Next message (by thread): [Python-Dev] PEP520 and absence of __definition_order__
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]