OILS / build / oil-defs / pyext / fastfunc.c / methods.def View on Github | oilshell.org

10 lines, 9 significant
1// pyext/fastfunc.c
2
3static PyMethodDef methods[] = {
4 {"J8EncodeString", func_J8EncodeString, METH_VARARGS},
5 {"ShellEncodeString", func_ShellEncodeString, METH_VARARGS},
6 {"PartIsUtf8", func_PartIsUtf8, METH_VARARGS},
7 {"Utf8DecodeOne", func_Utf8DecodeOne, METH_VARARGS},
8 {"CanOmitQuotes", func_CanOmitQuotes, METH_VARARGS},
9 {0},
10};