Commit c279f9e9 authored by Stefan Behnel's avatar Stefan Behnel

const fix by Lisandro

parent 4ae3356b
...@@ -4364,7 +4364,7 @@ static INLINE void __Pyx_RaiseArgtupleInvalid( ...@@ -4364,7 +4364,7 @@ static INLINE void __Pyx_RaiseArgtupleInvalid(
Py_ssize_t num_found) Py_ssize_t num_found)
{ {
Py_ssize_t num_expected; Py_ssize_t num_expected;
char *number, *more_or_less; const char *number, *more_or_less;
if (num_found < num_min) { if (num_found < num_min) {
num_expected = num_min; num_expected = num_min;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment