(block)
| 3542 | |
| 3543 | |
| 3544 | def 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 | |
| 3559 | def _is_visit_pair(obj): |
no test coverage detected