mercurial/manifest.c
branchstable
changeset 29254 c5912a0b156c
parent 27661 abc79f44f548
child 30079 84debea79903
equal deleted inserted replaced
29229:89bba2beb03e 29254:c5912a0b156c
   859 
   859 
   860 static PyMethodDef lazymanifest_methods[] = {
   860 static PyMethodDef lazymanifest_methods[] = {
   861 	{"iterkeys", (PyCFunction)lazymanifest_getkeysiter, METH_NOARGS,
   861 	{"iterkeys", (PyCFunction)lazymanifest_getkeysiter, METH_NOARGS,
   862 	 "Iterate over file names in this lazymanifest."},
   862 	 "Iterate over file names in this lazymanifest."},
   863 	{"iterentries", (PyCFunction)lazymanifest_getentriesiter, METH_NOARGS,
   863 	{"iterentries", (PyCFunction)lazymanifest_getentriesiter, METH_NOARGS,
   864 	 "Iterate over (path, nodeid, flags) typles in this lazymanifest."},
   864 	 "Iterate over (path, nodeid, flags) tuples in this lazymanifest."},
   865 	{"copy", (PyCFunction)lazymanifest_copy, METH_NOARGS,
   865 	{"copy", (PyCFunction)lazymanifest_copy, METH_NOARGS,
   866 	 "Make a copy of this lazymanifest."},
   866 	 "Make a copy of this lazymanifest."},
   867 	{"filtercopy", (PyCFunction)lazymanifest_filtercopy, METH_O,
   867 	{"filtercopy", (PyCFunction)lazymanifest_filtercopy, METH_O,
   868 	 "Make a copy of this manifest filtered by matchfn."},
   868 	 "Make a copy of this manifest filtered by matchfn."},
   869 	{"diff", (PyCFunction)lazymanifest_diff, METH_VARARGS,
   869 	{"diff", (PyCFunction)lazymanifest_diff, METH_VARARGS,