Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 528ca53 commit 6543b45Copy full SHA for 6543b45
1 file changed
Objects/unicodeobject.c
@@ -4013,15 +4013,15 @@ PyObject *
4013
PyUnicode_Join(PyObject *separator, PyObject *seq)
4014
{
4015
PyObject *internal_separator = NULL;
4016
- const Py_UNICODE *sep;
4017
- size_t seplen;
+ const Py_UNICODE blank = ' ';
+ const Py_UNICODE *sep = ␣
4018
+ size_t seplen = 1;
4019
PyUnicodeObject *res = NULL; /* the result */
4020
size_t res_alloc = 100; /* # allocated bytes for string in res */
4021
size_t res_used; /* # used bytes */
4022
Py_UNICODE *res_p; /* pointer to free byte in res's string area */
4023
PyObject *fseq; /* PySequence_Fast(seq) */
4024
int seqlen; /* len(fseq) -- number of items in sequence */
- const Py_UNICODE blank = ' ';
4025
PyObject *item;
4026
int i;
4027
0 commit comments