##// END OF EJS Templates
dirstate-item: fix the declaration of the Cext `from_v1_meth`...
marmoute -
r48703:32aa80a8 default
parent child Browse files
Show More
@@ -232,8 +232,8 b' static PyMethodDef dirstate_item_methods'
232 232 "return a \"mtime\" suitable for v1 serialization"},
233 233 {"need_delay", (PyCFunction)dirstate_item_need_delay, METH_O,
234 234 "True if the stored mtime would be ambiguous with the current time"},
235 {"from_v1_data", (PyCFunction)dirstate_item_from_v1_meth, METH_O,
236 "build a new DirstateItem object from V1 data"},
235 {"from_v1_data", (PyCFunction)dirstate_item_from_v1_meth,
236 METH_VARARGS | METH_CLASS, "build a new DirstateItem object from V1 data"},
237 237 {"set_possibly_dirty", (PyCFunction)dirstate_item_set_possibly_dirty,
238 238 METH_NOARGS, "mark a file as \"possibly dirty\""},
239 239 {"set_untracked", (PyCFunction)dirstate_item_set_untracked, METH_NOARGS,
General Comments 0
You need to be logged in to leave comments. Login now