@@ -1075,19 +1075,19 @@ static PyTypeObject Decompressor_type = {
10751075
10761076/* Module-level functions. */
10771077
1078- PyDoc_STRVAR (check_is_supported_doc ,
1079- "check_is_supported (check_id) -> bool\n"
1078+ PyDoc_STRVAR (is_check_supported_doc ,
1079+ "is_check_supported (check_id) -> bool\n"
10801080"\n"
10811081"Test whether the given integrity check is supported.\n"
10821082"\n"
10831083"Always returns True for CHECK_NONE and CHECK_CRC32.\n" );
10841084
10851085static PyObject *
1086- check_is_supported (PyObject * self , PyObject * args )
1086+ is_check_supported (PyObject * self , PyObject * args )
10871087{
10881088 int check_id ;
10891089
1090- if (!PyArg_ParseTuple (args , "i:check_is_supported " , & check_id ))
1090+ if (!PyArg_ParseTuple (args , "i:is_check_supported " , & check_id ))
10911091 return NULL ;
10921092
10931093 return PyBool_FromLong (lzma_check_is_supported (check_id ));
@@ -1182,8 +1182,8 @@ decode_filter_properties(PyObject *self, PyObject *args)
11821182/* Module initialization. */
11831183
11841184static PyMethodDef module_methods [] = {
1185- {"check_is_supported " , (PyCFunction )check_is_supported ,
1186- METH_VARARGS , check_is_supported_doc },
1185+ {"is_check_supported " , (PyCFunction )is_check_supported ,
1186+ METH_VARARGS , is_check_supported_doc },
11871187 {"encode_filter_properties" , (PyCFunction )encode_filter_properties ,
11881188 METH_VARARGS , encode_filter_properties_doc },
11891189 {"decode_filter_properties" , (PyCFunction )decode_filter_properties ,
0 commit comments