@@ -1933,7 +1933,7 @@ is_space(enum PyUnicode_Kind kind, const void *data, Py_ssize_t pos)
19331933 Return NULL if malloc fails and an empty string if invalid characters
19341934 are found. */
19351935static char *
1936- numeric_as_ascii (const PyObject * u , int strip_ws , int ignore_underscores )
1936+ numeric_as_ascii (PyObject * u , int strip_ws , int ignore_underscores )
19371937{
19381938 enum PyUnicode_Kind kind ;
19391939 const void * data ;
@@ -2047,7 +2047,7 @@ PyDecType_FromCStringExact(PyTypeObject *type, const char *s,
20472047
20482048/* Return a new PyDecObject or a subtype from a PyUnicodeObject. */
20492049static PyObject *
2050- PyDecType_FromUnicode (PyTypeObject * type , const PyObject * u ,
2050+ PyDecType_FromUnicode (PyTypeObject * type , PyObject * u ,
20512051 PyObject * context )
20522052{
20532053 PyObject * dec ;
@@ -2067,7 +2067,7 @@ PyDecType_FromUnicode(PyTypeObject *type, const PyObject *u,
20672067 * conversion. If the conversion is not exact, fail with InvalidOperation.
20682068 * Allow leading and trailing whitespace in the input operand. */
20692069static PyObject *
2070- PyDecType_FromUnicodeExactWS (PyTypeObject * type , const PyObject * u ,
2070+ PyDecType_FromUnicodeExactWS (PyTypeObject * type , PyObject * u ,
20712071 PyObject * context )
20722072{
20732073 PyObject * dec ;
@@ -2150,7 +2150,7 @@ PyDecType_FromSsizeExact(PyTypeObject *type, mpd_ssize_t v, PyObject *context)
21502150/* Convert from a PyLongObject. The context is not modified; flags set
21512151 during conversion are accumulated in the status parameter. */
21522152static PyObject *
2153- dec_from_long (PyTypeObject * type , const PyObject * v ,
2153+ dec_from_long (PyTypeObject * type , PyObject * v ,
21542154 const mpd_context_t * ctx , uint32_t * status )
21552155{
21562156 PyObject * dec ;
@@ -2201,7 +2201,7 @@ dec_from_long(PyTypeObject *type, const PyObject *v,
22012201/* Return a new PyDecObject from a PyLongObject. Use the context for
22022202 conversion. */
22032203static PyObject *
2204- PyDecType_FromLong (PyTypeObject * type , const PyObject * v , PyObject * context )
2204+ PyDecType_FromLong (PyTypeObject * type , PyObject * v , PyObject * context )
22052205{
22062206 PyObject * dec ;
22072207 uint32_t status = 0 ;
@@ -2227,7 +2227,7 @@ PyDecType_FromLong(PyTypeObject *type, const PyObject *v, PyObject *context)
22272227/* Return a new PyDecObject from a PyLongObject. Use a maximum context
22282228 for conversion. If the conversion is not exact, set InvalidOperation. */
22292229static PyObject *
2230- PyDecType_FromLongExact (PyTypeObject * type , const PyObject * v ,
2230+ PyDecType_FromLongExact (PyTypeObject * type , PyObject * v ,
22312231 PyObject * context )
22322232{
22332233 PyObject * dec ;
0 commit comments