@@ -13623,14 +13623,6 @@ unicode_zfill_impl(PyObject *self, Py_ssize_t width)
|
13623 | 13623 | return u; |
13624 | 13624 | } |
13625 | 13625 | |
13626 | | -#if 0 |
13627 | | -static PyObject * |
13628 | | -unicode__decimal2ascii(PyObject *self) |
13629 | | -{ |
13630 | | -return PyUnicode_TransformDecimalAndSpaceToASCII(self); |
13631 | | -} |
13632 | | -#endif |
13633 | | - |
13634 | 13626 | PyDoc_STRVAR(startswith__doc__, |
13635 | 13627 | "S.startswith(prefix[, start[, end]]) -> bool\n\ |
13636 | 13628 | \n\ |
@@ -14216,11 +14208,6 @@ static PyMethodDef unicode_methods[] = {
|
14216 | 14208 | UNICODE___FORMAT___METHODDEF |
14217 | 14209 | UNICODE_MAKETRANS_METHODDEF |
14218 | 14210 | UNICODE_SIZEOF_METHODDEF |
14219 | | -#if 0 |
14220 | | -/* These methods are just used for debugging the implementation. */ |
14221 | | - {"_decimal2ascii", (PyCFunction) unicode__decimal2ascii, METH_NOARGS}, |
14222 | | -#endif |
14223 | | - |
14224 | 14211 | {"__getnewargs__", unicode_getnewargs, METH_NOARGS}, |
14225 | 14212 | {NULL, NULL} |
14226 | 14213 | }; |
|