summaryrefslogtreecommitdiff
path: root/plugins/yaml
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-12-11 15:47:22 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-12-11 15:47:22 (GMT)
commitf61d22146a0b9c476157e79b49afabb89ac9e931 (patch)
tree155032149fdd66fbfd398a8a2b8a10ff8e02ea53 /plugins/yaml
parent4b5cf2c57553eaeb647090ba8d0ad862c46e6733 (diff)
Updated code to comply with the coding style.
Diffstat (limited to 'plugins/yaml')
-rw-r--r--plugins/yaml/python/node.c8
-rw-r--r--plugins/yaml/python/reader.c28
-rw-r--r--plugins/yaml/python/tree.c8
3 files changed, 22 insertions, 22 deletions
diff --git a/plugins/yaml/python/node.c b/plugins/yaml/python/node.c
index d5e5a48..7db6e59 100644
--- a/plugins/yaml/python/node.c
+++ b/plugins/yaml/python/node.c
@@ -81,7 +81,7 @@ static PyObject *py_yaml_node_find_by_path(PyObject *self, PyObject *args)
size_t count; /* Quantité de trouvailles */
size_t i; /* Boucle de parcours */
-#define YAML_NODE_FIND_BY_PATH PYTHON_METHOD_DEF \
+#define YAML_NODE_FIND_BY_PATH_METHOD PYTHON_METHOD_DEF \
( \
find_by_path, "path, /, prepare=False", \
METH_VARARGS, py_yaml_node, \
@@ -149,7 +149,7 @@ static PyObject *py_yaml_node_find_one_by_path(PyObject *self, PyObject *args)
GYamlNode *node; /* Version GLib du noeud */
GYamlNode *found; /* Création GLib à transmettre */
-#define YAML_NODE_FIND_ONE_BY_PATH PYTHON_METHOD_DEF \
+#define YAML_NODE_FIND_ONE_BY_PATH_METHOD PYTHON_METHOD_DEF \
( \
find_one_by_path, "path, /, prepare=False", \
METH_VARARGS, py_yaml_node, \
@@ -250,8 +250,8 @@ static PyObject *py_yaml_node_get_yaml_line(PyObject *self, void *closure)
PyTypeObject *get_python_yaml_node_type(void)
{
static PyMethodDef py_yaml_node_methods[] = {
- YAML_NODE_FIND_BY_PATH,
- YAML_NODE_FIND_ONE_BY_PATH,
+ YAML_NODE_FIND_BY_PATH_METHOD,
+ YAML_NODE_FIND_ONE_BY_PATH_METHOD,
{ NULL }
};
diff --git a/plugins/yaml/python/reader.c b/plugins/yaml/python/reader.c
index a69e54f..f80623f 100644
--- a/plugins/yaml/python/reader.c
+++ b/plugins/yaml/python/reader.c
@@ -77,11 +77,11 @@ static PyObject *py_yaml_reader_new_from_content(PyObject *self, PyObject *args)
int ret; /* Bilan de lecture des args. */
GYamlReader *reader; /* Création GLib à transmettre */
-#define YAML_READER_NEW_FROM_CONTENT PYTHON_METHOD_DEF \
-( \
- new_from_content, "content", \
- METH_STATIC | METH_VARARGS, py_yaml_reader, \
- "Load a Yaml content." \
+#define YAML_READER_NEW_FROM_CONTENT_METHOD PYTHON_METHOD_DEF \
+( \
+ new_from_content, "content", \
+ METH_STATIC | METH_VARARGS, py_yaml_reader, \
+ "Load a Yaml content." \
)
/**
@@ -132,13 +132,13 @@ static PyObject *py_yaml_reader_new_from_path(PyObject *self, PyObject *args)
int ret; /* Bilan de lecture des args. */
GYamlReader *reader; /* Création GLib à transmettre */
-#define YAML_READER_NEW_FROM_PATH PYTHON_METHOD_DEF \
-( \
- new_from_path, "path", \
- METH_STATIC | METH_VARARGS, py_yaml_reader, \
- "Load a Yaml content from a path.\n" \
- "\n" \
- "The path can be a filename or a resource URI." \
+#define YAML_READER_NEW_FROM_PATH_METHOD PYTHON_METHOD_DEF \
+( \
+ new_from_path, "path", \
+ METH_STATIC | METH_VARARGS, py_yaml_reader, \
+ "Load a Yaml content from a path.\n" \
+ "\n" \
+ "The path can be a filename or a resource URI." \
)
ret = PyArg_ParseTuple(args, "s", &path);
@@ -281,8 +281,8 @@ static PyObject *py_yaml_reader_get_tree(PyObject *self, void *closure)
PyTypeObject *get_python_yaml_reader_type(void)
{
static PyMethodDef py_yaml_reader_methods[] = {
- YAML_READER_NEW_FROM_CONTENT,
- YAML_READER_NEW_FROM_PATH,
+ YAML_READER_NEW_FROM_CONTENT_METHOD,
+ YAML_READER_NEW_FROM_PATH_METHOD,
{ NULL }
};
diff --git a/plugins/yaml/python/tree.c b/plugins/yaml/python/tree.c
index a204a11..7d28254 100644
--- a/plugins/yaml/python/tree.c
+++ b/plugins/yaml/python/tree.c
@@ -160,7 +160,7 @@ static PyObject *py_yaml_tree_find_by_path(PyObject *self, PyObject *args)
size_t count; /* Quantité de trouvailles */
size_t i; /* Boucle de parcours */
-#define YAML_TREE_FIND_BY_PATH PYTHON_METHOD_DEF \
+#define YAML_TREE_FIND_BY_PATH_METHOD PYTHON_METHOD_DEF \
( \
find_by_path, "path, /, prepare=False", \
METH_VARARGS, py_yaml_tree, \
@@ -228,7 +228,7 @@ static PyObject *py_yaml_tree_find_one_by_path(PyObject *self, PyObject *args)
GYamlTree *tree; /* Version GLib du type */
GYamlNode *found; /* Création GLib à transmettre */
-#define YAML_TREE_FIND_ONE_BY_PATH PYTHON_METHOD_DEF \
+#define YAML_TREE_FIND_ONE_BY_PATH_METHOD PYTHON_METHOD_DEF \
( \
find_one_by_path, "path, /, prepare=False", \
METH_VARARGS, py_yaml_tree, \
@@ -321,8 +321,8 @@ static PyObject *py_yaml_tree_get_root(PyObject *self, void *closure)
PyTypeObject *get_python_yaml_tree_type(void)
{
static PyMethodDef py_yaml_tree_methods[] = {
- YAML_TREE_FIND_BY_PATH,
- YAML_TREE_FIND_ONE_BY_PATH,
+ YAML_TREE_FIND_BY_PATH_METHOD,
+ YAML_TREE_FIND_ONE_BY_PATH_METHOD,
{ NULL }
};