[Numpy-discussion] [F2PY] Fortran call fails in IDLE / PyScripter

2008-12-03 Thread Christophe Chappet
in Eclipse but I'm looking for a simple interactive python shell that can execute some programs. IPython does the job but is less friendly than IDLE in term of program editing. Anyway, I think I will use it for now. Thanks for your reply. Regards, Christophe On Tue, Dec 2, 2008 at 08:26, Ch

[Numpy-discussion] [F2PY] Fortran call fails in IDLE / PyScripter

2008-12-02 Thread Christophe Chappet
Hi all, I compile the followinq code using "f2py -c --fcompiler=gnu95 --compiler=mingw32" -m hello subroutine AfficheMessage(szText) character szText*100 write (*,*) szText return end Using python console : >>>import hello >>>hello.affichemessage(" Hello") works fine