mercurial/cext/parsers.c
changeset 42096 509a0477b3a6
parent 42068 896b19d12c08
child 42303 e240bec26626
equal deleted inserted replaced
42095:864f9f63d3ed 42096:509a0477b3a6
   182 		PyErr_SetString(PyExc_ValueError,
   182 		PyErr_SetString(PyExc_ValueError,
   183 		                "too little data for parents");
   183 		                "too little data for parents");
   184 		goto quit;
   184 		goto quit;
   185 	}
   185 	}
   186 
   186 
   187 	parents = Py_BuildValue(PY23("s#s#", "y#y#"), str, 20, str + 20, 20);
   187 	parents = Py_BuildValue(PY23("s#s#", "y#y#"), str, (Py_ssize_t)20,
       
   188 	                        str + 20, (Py_ssize_t)20);
   188 	if (!parents) {
   189 	if (!parents) {
   189 		goto quit;
   190 		goto quit;
   190 	}
   191 	}
   191 
   192 
   192 	/* read filenames */
   193 	/* read filenames */