projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Rename islhelper into _isl
[linpy.git]
/
pypol
/
_isl.c
diff --git
a/pypol/islhelper.c
b/pypol/_isl.c
similarity index 56%
rename from
pypol/islhelper.c
rename to
pypol/_isl.c
index
38f249d
..
974b0c0
100644
(file)
--- a/
pypol/islhelper.c
+++ b/
pypol/_isl.c
@@
-1,21
+1,21
@@
#include <Python.h>
#include <isl/space.h>
#include <Python.h>
#include <isl/space.h>
-static PyMethodDef
islhelper
_methods[] = {
+static PyMethodDef
_isl
_methods[] = {
{NULL, NULL, 0, NULL}
};
{NULL, NULL, 0, NULL}
};
-static struct PyModuleDef
islhelper
module = {
+static struct PyModuleDef
_isl
module = {
PyModuleDef_HEAD_INIT,
PyModuleDef_HEAD_INIT,
- "
islhelper
",
+ "
_isl
",
NULL,
-1,
NULL,
-1,
-
islhelper
_methods
+
_isl
_methods
};
};
-PyMODINIT_FUNC PyInit_
islhelper
(void) {
+PyMODINIT_FUNC PyInit_
_isl
(void) {
PyObject *m;
PyObject *m;
- m = PyModule_Create(&
islhelper
module);
+ m = PyModule_Create(&
_isl
module);
if (m == NULL)
return NULL;
if (m == NULL)
return NULL;