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 !

I do the same in the program window of IDLE and :
- no message is displayed.
- the shell restart (or IDLE crah if launched with -n)

Same problem with PyScripter IDE. (crash).

Any suggestion ?
Regards,
Christophe