Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Make python3 happy
  • Loading branch information
carlosmn committed Jul 10, 2014
commit 7f922ae9d982cfd3b13f842c213667cdf4ee8ed6
2 changes: 1 addition & 1 deletion src/diff.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ PyMappingMethods Diff_as_mapping = {
static PyMethodDef Diff_methods[] = {
METHOD(Diff, merge, METH_VARARGS),
METHOD(Diff, find_similar, METH_VARARGS),
METHOD(Diff, from_c, METH_STATIC),
METHOD(Diff, from_c, METH_STATIC | METH_VARARGS),
{NULL}
};

Expand Down