| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  | /*[clinic input]
 | 
					
						
							|  |  |  | preserve | 
					
						
							|  |  |  | [clinic start generated code]*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  | #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 | 
					
						
							| 
									
										
										
										
											2023-08-31 23:42:34 +02:00
										 |  |  | #  include "pycore_gc.h"          // PyGC_Head
 | 
					
						
							|  |  |  | #  include "pycore_runtime.h"     // _Py_ID()
 | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-08-31 23:42:34 +02:00
										 |  |  | #include "pycore_abstract.h"      // _PyNumber_Index()
 | 
					
						
							| 
									
										
										
										
											2023-10-17 14:30:31 +02:00
										 |  |  | #include "pycore_modsupport.h"    // _PyArg_UnpackKeywords()
 | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  | PyDoc_STRVAR(stringlib_expandtabs__doc__, | 
					
						
							|  |  |  | "expandtabs($self, /, tabsize=8)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return a copy where all tab characters are expanded using spaces.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "If tabsize is not given, a tab size of 8 characters is assumed."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STRINGLIB_EXPANDTABS_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2022-05-03 20:25:41 +02:00
										 |  |  |     {"expandtabs", _PyCFunction_CAST(stringlib_expandtabs), METH_FASTCALL|METH_KEYWORDS, stringlib_expandtabs__doc__}, | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | stringlib_expandtabs_impl(PyObject *self, int tabsize); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | stringlib_expandtabs(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							| 
									
										
										
										
											2022-08-13 12:09:40 +02:00
										 |  |  |     #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-13 12:09:40 +02:00
										 |  |  |     #define NUM_KEYWORDS 1
 | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  |     static struct { | 
					
						
							|  |  |  |         PyGC_Head _this_is_not_used; | 
					
						
							|  |  |  |         PyObject_VAR_HEAD | 
					
						
							|  |  |  |         PyObject *ob_item[NUM_KEYWORDS]; | 
					
						
							|  |  |  |     } _kwtuple = { | 
					
						
							|  |  |  |         .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS) | 
					
						
							|  |  |  |         .ob_item = { &_Py_ID(tabsize), }, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     #undef NUM_KEYWORDS
 | 
					
						
							| 
									
										
										
										
											2022-08-13 12:09:40 +02:00
										 |  |  |     #define KWTUPLE (&_kwtuple.ob_base.ob_base)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #else  // !Py_BUILD_CORE
 | 
					
						
							|  |  |  |     #  define KWTUPLE NULL
 | 
					
						
							|  |  |  |     #endif  // !Py_BUILD_CORE
 | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  |     static const char * const _keywords[] = {"tabsize", NULL}; | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  |     static _PyArg_Parser _parser = { | 
					
						
							|  |  |  |         .keywords = _keywords, | 
					
						
							|  |  |  |         .fname = "expandtabs", | 
					
						
							|  |  |  |         .kwtuple = KWTUPLE, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     #undef KWTUPLE
 | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     PyObject *argsbuf[1]; | 
					
						
							|  |  |  |     Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0; | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  |     int tabsize = 8; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-08 14:23:50 +02:00
										 |  |  |     args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, | 
					
						
							|  |  |  |             /*minpos*/ 0, /*maxpos*/ 1, /*minkw*/ 0, /*varpos*/ 0, argsbuf); | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     if (!args) { | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     if (!noptargs) { | 
					
						
							|  |  |  |         goto skip_optional_pos; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-08-25 00:51:22 +02:00
										 |  |  |     tabsize = PyLong_AsInt(args[0]); | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     if (tabsize == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | skip_optional_pos: | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  |     return_value = stringlib_expandtabs_impl(self, tabsize); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(stringlib_ljust__doc__, | 
					
						
							|  |  |  | "ljust($self, width, fillchar=b\' \', /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return a left-justified string of length width.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Padding is done using the specified fill character."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STRINGLIB_LJUST_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2022-05-03 20:25:41 +02:00
										 |  |  |     {"ljust", _PyCFunction_CAST(stringlib_ljust), METH_FASTCALL, stringlib_ljust__doc__}, | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | stringlib_ljust_impl(PyObject *self, Py_ssize_t width, char fillchar); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | stringlib_ljust(PyObject *self, PyObject *const *args, Py_ssize_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							|  |  |  |     Py_ssize_t width; | 
					
						
							|  |  |  |     char fillchar = ' '; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     if (!_PyArg_CheckPositional("ljust", nargs, 1, 2)) { | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         Py_ssize_t ival = -1; | 
					
						
							| 
									
										
										
										
											2020-05-28 10:33:45 +03:00
										 |  |  |         PyObject *iobj = _PyNumber_Index(args[0]); | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |         if (iobj != NULL) { | 
					
						
							|  |  |  |             ival = PyLong_AsSsize_t(iobj); | 
					
						
							|  |  |  |             Py_DECREF(iobj); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (ival == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         width = ival; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (nargs < 2) { | 
					
						
							|  |  |  |         goto skip_optional; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-05-28 12:01:37 +03:00
										 |  |  |     if (PyBytes_Check(args[1])) { | 
					
						
							|  |  |  |         if (PyBytes_GET_SIZE(args[1]) != 1) { | 
					
						
							|  |  |  |             PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                 "ljust(): argument 2 must be a byte string of length 1, " | 
					
						
							|  |  |  |                 "not a bytes object of length %zd", | 
					
						
							|  |  |  |                 PyBytes_GET_SIZE(args[1])); | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |         fillchar = PyBytes_AS_STRING(args[1])[0]; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-05-28 12:01:37 +03:00
										 |  |  |     else if (PyByteArray_Check(args[1])) { | 
					
						
							|  |  |  |         if (PyByteArray_GET_SIZE(args[1]) != 1) { | 
					
						
							|  |  |  |             PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                 "ljust(): argument 2 must be a byte string of length 1, " | 
					
						
							|  |  |  |                 "not a bytearray object of length %zd", | 
					
						
							|  |  |  |                 PyByteArray_GET_SIZE(args[1])); | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |         fillchar = PyByteArray_AS_STRING(args[1])[0]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |         _PyArg_BadArgument("ljust", "argument 2", "a byte string of length 1", args[1]); | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | skip_optional: | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  |     return_value = stringlib_ljust_impl(self, width, fillchar); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(stringlib_rjust__doc__, | 
					
						
							|  |  |  | "rjust($self, width, fillchar=b\' \', /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return a right-justified string of length width.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Padding is done using the specified fill character."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STRINGLIB_RJUST_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2022-05-03 20:25:41 +02:00
										 |  |  |     {"rjust", _PyCFunction_CAST(stringlib_rjust), METH_FASTCALL, stringlib_rjust__doc__}, | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | stringlib_rjust_impl(PyObject *self, Py_ssize_t width, char fillchar); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | stringlib_rjust(PyObject *self, PyObject *const *args, Py_ssize_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							|  |  |  |     Py_ssize_t width; | 
					
						
							|  |  |  |     char fillchar = ' '; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     if (!_PyArg_CheckPositional("rjust", nargs, 1, 2)) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Py_ssize_t ival = -1; | 
					
						
							| 
									
										
										
										
											2020-05-28 10:33:45 +03:00
										 |  |  |         PyObject *iobj = _PyNumber_Index(args[0]); | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |         if (iobj != NULL) { | 
					
						
							|  |  |  |             ival = PyLong_AsSsize_t(iobj); | 
					
						
							|  |  |  |             Py_DECREF(iobj); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (ival == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         width = ival; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (nargs < 2) { | 
					
						
							|  |  |  |         goto skip_optional; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-05-28 12:01:37 +03:00
										 |  |  |     if (PyBytes_Check(args[1])) { | 
					
						
							|  |  |  |         if (PyBytes_GET_SIZE(args[1]) != 1) { | 
					
						
							|  |  |  |             PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                 "rjust(): argument 2 must be a byte string of length 1, " | 
					
						
							|  |  |  |                 "not a bytes object of length %zd", | 
					
						
							|  |  |  |                 PyBytes_GET_SIZE(args[1])); | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |         fillchar = PyBytes_AS_STRING(args[1])[0]; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-05-28 12:01:37 +03:00
										 |  |  |     else if (PyByteArray_Check(args[1])) { | 
					
						
							|  |  |  |         if (PyByteArray_GET_SIZE(args[1]) != 1) { | 
					
						
							|  |  |  |             PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                 "rjust(): argument 2 must be a byte string of length 1, " | 
					
						
							|  |  |  |                 "not a bytearray object of length %zd", | 
					
						
							|  |  |  |                 PyByteArray_GET_SIZE(args[1])); | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |         fillchar = PyByteArray_AS_STRING(args[1])[0]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |         _PyArg_BadArgument("rjust", "argument 2", "a byte string of length 1", args[1]); | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  | skip_optional: | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  |     return_value = stringlib_rjust_impl(self, width, fillchar); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(stringlib_center__doc__, | 
					
						
							|  |  |  | "center($self, width, fillchar=b\' \', /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return a centered string of length width.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Padding is done using the specified fill character."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STRINGLIB_CENTER_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2022-05-03 20:25:41 +02:00
										 |  |  |     {"center", _PyCFunction_CAST(stringlib_center), METH_FASTCALL, stringlib_center__doc__}, | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | stringlib_center_impl(PyObject *self, Py_ssize_t width, char fillchar); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | stringlib_center(PyObject *self, PyObject *const *args, Py_ssize_t nargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							|  |  |  |     Py_ssize_t width; | 
					
						
							|  |  |  |     char fillchar = ' '; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     if (!_PyArg_CheckPositional("center", nargs, 1, 2)) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Py_ssize_t ival = -1; | 
					
						
							| 
									
										
										
										
											2020-05-28 10:33:45 +03:00
										 |  |  |         PyObject *iobj = _PyNumber_Index(args[0]); | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |         if (iobj != NULL) { | 
					
						
							|  |  |  |             ival = PyLong_AsSsize_t(iobj); | 
					
						
							|  |  |  |             Py_DECREF(iobj); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (ival == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         width = ival; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (nargs < 2) { | 
					
						
							|  |  |  |         goto skip_optional; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-05-28 12:01:37 +03:00
										 |  |  |     if (PyBytes_Check(args[1])) { | 
					
						
							|  |  |  |         if (PyBytes_GET_SIZE(args[1]) != 1) { | 
					
						
							|  |  |  |             PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                 "center(): argument 2 must be a byte string of length 1, " | 
					
						
							|  |  |  |                 "not a bytes object of length %zd", | 
					
						
							|  |  |  |                 PyBytes_GET_SIZE(args[1])); | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |         fillchar = PyBytes_AS_STRING(args[1])[0]; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-05-28 12:01:37 +03:00
										 |  |  |     else if (PyByteArray_Check(args[1])) { | 
					
						
							|  |  |  |         if (PyByteArray_GET_SIZE(args[1]) != 1) { | 
					
						
							|  |  |  |             PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                 "center(): argument 2 must be a byte string of length 1, " | 
					
						
							|  |  |  |                 "not a bytearray object of length %zd", | 
					
						
							|  |  |  |                 PyByteArray_GET_SIZE(args[1])); | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |         fillchar = PyByteArray_AS_STRING(args[1])[0]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |         _PyArg_BadArgument("center", "argument 2", "a byte string of length 1", args[1]); | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  | skip_optional: | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  |     return_value = stringlib_center_impl(self, width, fillchar); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(stringlib_zfill__doc__, | 
					
						
							|  |  |  | "zfill($self, width, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Pad a numeric string with zeros on the left, to fill a field of the given width.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "The original string is never truncated."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STRINGLIB_ZFILL_METHODDEF    \
 | 
					
						
							|  |  |  |     {"zfill", (PyCFunction)stringlib_zfill, METH_O, stringlib_zfill__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | stringlib_zfill_impl(PyObject *self, Py_ssize_t width); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | stringlib_zfill(PyObject *self, PyObject *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							|  |  |  |     Py_ssize_t width; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-25 13:23:47 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         Py_ssize_t ival = -1; | 
					
						
							| 
									
										
										
										
											2020-05-28 10:33:45 +03:00
										 |  |  |         PyObject *iobj = _PyNumber_Index(arg); | 
					
						
							| 
									
										
										
										
											2018-12-25 13:23:47 +02:00
										 |  |  |         if (iobj != NULL) { | 
					
						
							|  |  |  |             ival = PyLong_AsSsize_t(iobj); | 
					
						
							|  |  |  |             Py_DECREF(iobj); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (ival == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         width = ival; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-07-06 13:17:38 +03:00
										 |  |  |     return_value = stringlib_zfill_impl(self, width); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-11-08 14:23:50 +02:00
										 |  |  | /*[clinic end generated code: output=0e24a10bac3ec053 input=a9049054013a1b77]*/ |