Re: [f2py] On to the next error
Pearu Peterson <[email protected]> Sat, 7 Aug 2010 10:27:04 +0300
| Newsgroups | gmane.comp.python.f2py.user |
|---|---|
| Message-ID | <[email protected]> |
On Sat, Aug 7, 2010 at 1:38 AM, Al Niessner <[email protected]> wrote: > > I sliced and diced the code up and I attached a short example. Seems > like f2py is not respecting private as it is generating wrapper methods > for module procedures in the private portions. > > f2py -c kinds.f90 io.f90 mathsub.f > > is the command that I am using. Also, I have moved to the svn release of > numpy so I have and can use the very latest f2py changes. Yes, f2py ignores private (I'll see if this can be easily fixed). Meanwhile you can use skip: f2py command line construct: f2py -c kinds.f90 io.f90 mathsub.f skip: printmsg_level printmsg_on Pearu