MCPcopy Create free account
hub / github.com/numpy/numpy / crack2fortran

Function crack2fortran

numpy/f2py/crackfortran.py:3544–3556  ·  view source on GitHub ↗
(block)

Source from the content-addressed store, hash-verified

3542
3543
3544def crack2fortran(block):
3545 global f2py_version
3546
3547 pyf = crack2fortrangen(block) + '\n'
3548 header = """! -*- f90 -*-
3549! Note: the context of this file is case sensitive.
3550"""
3551 footer = """
3552! This file was auto-generated with f2py (version:%s).
3553! See:
3554! https://web.archive.org/web/20140822061353/http://cens.ioc.ee/projects/f2py2e
3555""" % (f2py_version)
3556 return header + pyf + footer
3557
3558
3559def _is_visit_pair(obj):

Callers 1

crackfortran.pyFile · 0.85

Calls 1

crack2fortrangenFunction · 0.85

Tested by

no test coverage detected