-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into meson_extension_experiment
- Loading branch information
Showing
4 changed files
with
27 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* This file is auto-generated with f2py (version:1.26.2). | ||
* f2py is a Fortran to Python Interface Generator (FPIG), Second Edition, | ||
* written by Pearu Peterson <[email protected]>. | ||
* Generation date: Mon Jan 8 01:52:49 2024 | ||
* Generation date: Mon Jan 8 04:40:53 2024 | ||
* Do not edit this file directly unless you know what you are doing!!! | ||
*/ | ||
|
||
|
@@ -112,12 +112,12 @@ static PyObject *_hams_module; | |
|
||
/*********************** See f2py2e/rules.py: buildapi ***********************/ | ||
|
||
/************************************ Exec ************************************/ | ||
static char doc_f2py_rout__hams_HAMS_Full_Exec[] = "\ | ||
Exec()\n\nWrapper for ``Exec``.\ | ||
/************************************ exec ************************************/ | ||
static char doc_f2py_rout__hams_hams_full_exec[] = "\ | ||
exec()\n\nWrapper for ``exec``.\ | ||
\n"; | ||
/* */ | ||
static PyObject *f2py_rout__hams_HAMS_Full_Exec(const PyObject *capi_self, | ||
static PyObject *f2py_rout__hams_hams_full_exec(const PyObject *capi_self, | ||
PyObject *capi_args, | ||
PyObject *capi_keywds, | ||
void (*f2py_func)(void)) { | ||
|
@@ -132,7 +132,7 @@ static PyObject *f2py_rout__hams_HAMS_Full_Exec(const PyObject *capi_self, | |
f2py_start_clock(); | ||
#endif | ||
if (!PyArg_ParseTupleAndKeywords(capi_args,capi_keywds,\ | ||
"|:_hams.HAMS_Full.Exec",\ | ||
"|:_hams.hams_full.exec",\ | ||
capi_kwlist)) | ||
return NULL; | ||
/*frompyobj*/ | ||
|
@@ -170,23 +170,23 @@ f2py_stop_clock(); | |
#endif | ||
return capi_buildvalue; | ||
} | ||
/******************************** end of Exec ********************************/ | ||
/******************************** end of exec ********************************/ | ||
/*eof body*/ | ||
|
||
/******************* See f2py2e/f90mod_rules.py: buildhooks *******************/ | ||
|
||
static FortranDataDef f2py_HAMS_Full_def[] = { | ||
{"Exec",-1,{{-1}},0,0,NULL,(void *)f2py_rout__hams_HAMS_Full_Exec,doc_f2py_rout__hams_HAMS_Full_Exec}, | ||
static FortranDataDef f2py_hams_full_def[] = { | ||
{"exec",-1,{{-1}},0,0,NULL,(void *)f2py_rout__hams_hams_full_exec,doc_f2py_rout__hams_hams_full_exec}, | ||
{NULL} | ||
}; | ||
|
||
static void f2py_setup_HAMS_Full(char *Exec) { | ||
static void f2py_setup_hams_full(char *exec) { | ||
int i_f2py=0; | ||
f2py_HAMS_Full_def[i_f2py++].data = Exec; | ||
f2py_hams_full_def[i_f2py++].data = exec; | ||
} | ||
extern void F_FUNC_US(f2pyinitHAMS_Full,F2PYINITHAMS_FULL)(void (*)(char *)); | ||
static void f2py_init_HAMS_Full(void) { | ||
F_FUNC_US(f2pyinitHAMS_Full,F2PYINITHAMS_FULL)(f2py_setup_HAMS_Full); | ||
extern void F_FUNC_US(f2pyinithams_full,F2PYINITHAMS_FULL)(void (*)(char *)); | ||
static void f2py_init_hams_full(void) { | ||
F_FUNC_US(f2pyinithams_full,F2PYINITHAMS_FULL)(f2py_setup_hams_full); | ||
} | ||
|
||
/*need_f90modhooks*/ | ||
|
@@ -236,7 +236,7 @@ PyMODINIT_FUNC PyInit__hams(void) { | |
Py_DECREF(s); | ||
s = PyUnicode_FromString( | ||
"This module '_hams' is auto-generated with f2py (version:1.26.2).\nFunctions:\n" | ||
"Fortran 90/95 modules:\n"" HAMS_Full --- Exec()""."); | ||
"Fortran 90/95 modules:\n"" hams_full --- exec()""."); | ||
PyDict_SetItemString(d, "__doc__", s); | ||
Py_DECREF(s); | ||
s = PyUnicode_FromString("1.26.2"); | ||
|
@@ -256,7 +256,7 @@ PyMODINIT_FUNC PyInit__hams(void) { | |
} | ||
|
||
/*eof initf2pywraphooks*/ | ||
PyDict_SetItemString(d, "HAMS_Full", PyFortranObject_New(f2py_HAMS_Full_def,f2py_init_HAMS_Full)); | ||
PyDict_SetItemString(d, "hams_full", PyFortranObject_New(f2py_hams_full_def,f2py_init_hams_full)); | ||
/*eof initf90modhooks*/ | ||
|
||
/*eof initcommonhooks*/ | ||
|