##// END OF EJS Templates
parsers: introduce headrevsfiltered in C extension...
Mads Kiilerich -
r23087:42342f9a stable
parent child Browse files
Show More
@@ -2109,7 +2109,9 b' static PyMethodDef index_methods[] = {'
2109 2109 {"get", (PyCFunction)index_m_get, METH_VARARGS,
2110 2110 "get an index entry"},
2111 2111 {"headrevs", (PyCFunction)index_headrevs, METH_VARARGS,
2112 "get head revisions"},
2112 "get head revisions"}, /* Can do filtering since 3.2 */
2113 {"headrevsfiltered", (PyCFunction)index_headrevs, METH_VARARGS,
2114 "get filtered head revisions"}, /* Can always do filtering */
2113 2115 {"insert", (PyCFunction)index_insert, METH_VARARGS,
2114 2116 "insert an index entry"},
2115 2117 {"partialmatch", (PyCFunction)index_partialmatch, METH_VARARGS,
General Comments 0
You need to be logged in to leave comments. Login now