mercurial/cext/revlog.c
changeset 34440 7ed0750c71a1
parent 34438 b90e8da190da
child 34861 6ece4a85c350
equal deleted inserted replaced
34439:88e83a618de0 34440:7ed0750c71a1
   405 	}
   405 	}
   406 
   406 
   407 	return newlist;
   407 	return newlist;
   408 }
   408 }
   409 
   409 
   410 static int check_filter(PyObject *filter, Py_ssize_t arg) {
   410 static int check_filter(PyObject *filter, Py_ssize_t arg)
       
   411 {
   411 	if (filter) {
   412 	if (filter) {
   412 		PyObject *arglist, *result;
   413 		PyObject *arglist, *result;
   413 		int isfiltered;
   414 		int isfiltered;
   414 
   415 
   415 		arglist = Py_BuildValue("(n)", arg);
   416 		arglist = Py_BuildValue("(n)", arg);