[laytonjb@laytonjb-Lenovo-G50-45 F2PY]$ python Python 2.7.12 |Anaconda custom (64-bit)| (default, Jul 2 2016, 17:42:40) [GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux2 Type "help", "copyright", "credits" or "license" for more information. Anaconda is brought to you by Continuum Analytics. Please check out: http://continuum.io/thanks and https://anaconda.org >>> import hw >>> print hw.hello.__doc__ hello() Wrapper for ``hello``. >>> print hw.hello() HELLO_OPENMP FORTRAN90/OpenMP version The number of processors available = 4 The number of threads available = 4 OUTSIDE the parallel region. HELLO from process 0 Going INSIDE the parallel region: HELLO from process 0 HELLO from process 2 HELLO from process 3 HELLO from process 1 Back OUTSIDE the parallel region. Elapsed wall clock time = 0.606714E-03 HELLO_OPENMP Normal end of execution. None >>>