mirror of
https://github.com/python/cpython.git
synced 2025-09-05 00:11:10 +00:00
Revert my commit 7ba176c2f558: "Avoid useless "++" at the end of functions
Warnings found by the Clang Static Analyzer." Most people prefer ++ at the end of functions.
This commit is contained in:
parent
43b068648e
commit
4f2dab5c33
3 changed files with 5 additions and 5 deletions
|
@ -6474,7 +6474,7 @@ PyUnicode_EncodeDecimal(Py_UNICODE *s,
|
|||
}
|
||||
}
|
||||
/* 0-terminate the output string */
|
||||
*output = '\0';
|
||||
*output++ = '\0';
|
||||
Py_XDECREF(exc);
|
||||
Py_XDECREF(errorHandler);
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue