Mahé Perrette

Results 73 comments of Mahé Perrette

An option to f90wrap to create classes automatically from type and functions / methods having the type as first argument could also be a handy feature. What do you think?...

Excellent, thanks !

Sounds good, probably a good starting point.

I have not looked into the Extension class yet, but here is a handy workaround to copy a manually-compiled file under python site-packages, inspired by http://stackoverflow.com/a/18159969/2192272: ```python from distutils.core import...

Nice !! Many thanks. Sure changing the name would be fine (consistent with the docs...), but for now it is a reasonable workaround to have `raise_exception` defined somewhere (as it...

Note that in gfortran (v5.4.0) `-fcheck=recursion` (implied by `-fcheck=all`) must be deactivated otherwise a Fortran Runtime error occurs on the subsequent call: `Fortran runtime error: Recursive call to nonrecursive procedure...

Here is a reasonable workaround for my use case: just create a dummy module with all imports and replace any "use ..." statements in f90wra_*.f90 files with "use dummy ..."....

The idea by @kagbodji does not sound very simple to do in practice. What to do on startup if the folders content differ? I'd imagine instead doing exactly like copy...

- At the moment $HOME and other environment variables are used in config.py towards the beginning - tox.ini can be found inside pyproject.toml

I'm not sure what's the correct way of setting the home directory, but your snippet has a syntax error. `legacy_tox_ini ` opens a triple quote and it's closed further down....