@@ -1659,9 +1659,9 @@ PyDoc_STRVAR(test_str_converter__doc__,
16591659static PyObject *
16601660test_str_converter_impl(PyObject *module, const char *a, const char *b,
16611661 const char *c, const char *d, const char *e,
1662- const char *f, Py_ssize_clean_t f_length,
1663- const char *g, Py_ssize_clean_t g_length ,
1664- const char *h, Py_ssize_clean_t h_length);
1662+ const char *f, Py_ssize_t f_length, const char *g ,
1663+ Py_ssize_t g_length, const char *h ,
1664+ Py_ssize_t h_length);
16651665
16661666static PyObject *
16671667test_str_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
@@ -1673,11 +1673,11 @@ test_str_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
16731673 const char *d = "cef";
16741674 const char *e = "gh";
16751675 const char *f = "ij";
1676- Py_ssize_clean_t f_length;
1676+ Py_ssize_t f_length;
16771677 const char *g = "kl";
1678- Py_ssize_clean_t g_length;
1678+ Py_ssize_t g_length;
16791679 const char *h = "mn";
1680- Py_ssize_clean_t h_length;
1680+ Py_ssize_t h_length;
16811681
16821682 if (!_PyArg_ParseStack(args, nargs, "|sssyzy#s#z#:test_str_converter",
16831683 &a, &b, &c, &d, &e, &f, &f_length, &g, &g_length, &h, &h_length)) {
@@ -1692,10 +1692,10 @@ exit:
16921692static PyObject *
16931693test_str_converter_impl(PyObject *module, const char *a, const char *b,
16941694 const char *c, const char *d, const char *e,
1695- const char *f, Py_ssize_clean_t f_length,
1696- const char *g, Py_ssize_clean_t g_length ,
1697- const char *h, Py_ssize_clean_t h_length)
1698- /*[clinic end generated code: output=ad868ad94a488e32 input=8afe9da8185cd38c]*/
1695+ const char *f, Py_ssize_t f_length, const char *g ,
1696+ Py_ssize_t g_length, const char *h ,
1697+ Py_ssize_t h_length)
1698+ /*[clinic end generated code: output=5def009caa2fd1ac input=8afe9da8185cd38c]*/
16991699
17001700
17011701/*[clinic input]
@@ -1720,8 +1720,8 @@ PyDoc_STRVAR(test_str_converter_encoding__doc__,
17201720
17211721static PyObject *
17221722test_str_converter_encoding_impl(PyObject *module, char *a, char *b, char *c,
1723- char *d, Py_ssize_clean_t d_length, char *e,
1724- Py_ssize_clean_t e_length);
1723+ char *d, Py_ssize_t d_length, char *e,
1724+ Py_ssize_t e_length);
17251725
17261726static PyObject *
17271727test_str_converter_encoding(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
@@ -1731,9 +1731,9 @@ test_str_converter_encoding(PyObject *module, PyObject *const *args, Py_ssize_t
17311731 char *b = NULL;
17321732 char *c = NULL;
17331733 char *d = NULL;
1734- Py_ssize_clean_t d_length;
1734+ Py_ssize_t d_length;
17351735 char *e = NULL;
1736- Py_ssize_clean_t e_length;
1736+ Py_ssize_t e_length;
17371737
17381738 if (!_PyArg_ParseStack(args, nargs, "esesetes#et#:test_str_converter_encoding",
17391739 "idna", &a, "idna", &b, "idna", &c, "idna", &d, &d_length, "idna", &e, &e_length)) {
@@ -1768,9 +1768,9 @@ exit:
17681768
17691769static PyObject *
17701770test_str_converter_encoding_impl(PyObject *module, char *a, char *b, char *c,
1771- char *d, Py_ssize_clean_t d_length, char *e,
1772- Py_ssize_clean_t e_length)
1773- /*[clinic end generated code: output=f579dd9e795a364e input=eb4c38e1f898f402]*/
1771+ char *d, Py_ssize_t d_length, char *e,
1772+ Py_ssize_t e_length)
1773+ /*[clinic end generated code: output=5cae635c092334cb input=eb4c38e1f898f402]*/
17741774
17751775
17761776/*[clinic input]
@@ -1796,10 +1796,8 @@ PyDoc_STRVAR(test_Py_UNICODE_converter__doc__,
17961796static PyObject *
17971797test_Py_UNICODE_converter_impl(PyObject *module, const Py_UNICODE *a,
17981798 const Py_UNICODE *b, const Py_UNICODE *c,
1799- const Py_UNICODE *d,
1800- Py_ssize_clean_t d_length,
1801- const Py_UNICODE *e,
1802- Py_ssize_clean_t e_length);
1799+ const Py_UNICODE *d, Py_ssize_t d_length,
1800+ const Py_UNICODE *e, Py_ssize_t e_length);
18031801
18041802static PyObject *
18051803test_Py_UNICODE_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
@@ -1809,9 +1807,9 @@ test_Py_UNICODE_converter(PyObject *module, PyObject *const *args, Py_ssize_t na
18091807 const Py_UNICODE *b;
18101808 const Py_UNICODE *c;
18111809 const Py_UNICODE *d;
1812- Py_ssize_clean_t d_length;
1810+ Py_ssize_t d_length;
18131811 const Py_UNICODE *e;
1814- Py_ssize_clean_t e_length;
1812+ Py_ssize_t e_length;
18151813
18161814 if (!_PyArg_ParseStack(args, nargs, "O&O&O&u#Z#:test_Py_UNICODE_converter",
18171815 _PyUnicode_WideCharString_Converter, &a, _PyUnicode_WideCharString_Converter, &b, _PyUnicode_WideCharString_Opt_Converter, &c, &d, &d_length, &e, &e_length)) {
@@ -1839,11 +1837,9 @@ exit:
18391837static PyObject *
18401838test_Py_UNICODE_converter_impl(PyObject *module, const Py_UNICODE *a,
18411839 const Py_UNICODE *b, const Py_UNICODE *c,
1842- const Py_UNICODE *d,
1843- Py_ssize_clean_t d_length,
1844- const Py_UNICODE *e,
1845- Py_ssize_clean_t e_length)
1846- /*[clinic end generated code: output=ef45e982fedf0b3d input=064a3b68ad7f04b0]*/
1840+ const Py_UNICODE *d, Py_ssize_t d_length,
1841+ const Py_UNICODE *e, Py_ssize_t e_length)
1842+ /*[clinic end generated code: output=65d6607da302afd0 input=064a3b68ad7f04b0]*/
18471843
18481844
18491845/*[clinic input]
0 commit comments