mercurial/manifest.c
changeset 29328 60621cecc8c5
parent 29254 c5912a0b156c
child 30079 84debea79903
equal deleted inserted replaced
29327:baab9ea4426c 29328:60621cecc8c5
   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,