Lines Matching defs:comma
5850 PyObject *name_str, *comma, *tail, *tmp;
5878 /* Stitch everything up into a nice comma-separated list. */
5879 comma = PyUnicode_FromString(", ");
5880 if (comma == NULL) {
5884 tmp = PyUnicode_Join(comma, names);
5885 Py_DECREF(comma);
6042 PyObject* comma = PyUnicode_FromString(", ");
6043 if (comma == NULL) {
6046 PyObject* error_names = PyUnicode_Join(comma, posonly_names);
6047 Py_DECREF(comma);