Skip to content

Commit 0de9d66

Browse files
committed
MNT: Drop useless shebang
1 parent f1b2fb5 commit 0de9d66

File tree

9 files changed

+0
-9
lines changed

9 files changed

+0
-9
lines changed

numpy/distutils/system_info.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python3
21
"""
32
This file defines a set of system_info classes for getting
43
information about various resources (libraries, library directories,

numpy/f2py/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python3
21
"""Fortran to Python Interface Generator.
32
43
Copyright 1999 -- 2011 Pearu Peterson all rights reserved.

numpy/f2py/cfuncs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python3
21
"""
32
C declarations, CPP macros, and C functions for f2py2e.
43
Only required declarations/macros/functions will be used.

numpy/f2py/crackfortran.py

100755100644
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python3
21
"""
32
crackfortran --- read fortran (77,90) code and extract declaration information.
43

numpy/f2py/f2py2e.py

100755100644
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python3
21
"""
32
43
f2py2e - Fortran to Python C/API generator. 2nd Edition.

numpy/f2py/rules.py

100755100644
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python3
21
"""
32
43
Rules for building C/API module with f2py2e.

numpy/random/_examples/cython/extending.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python3
21
#cython: language_level=3
32

43
from libc.stdint cimport uint32_t

numpy/random/_examples/cython/extending_distributions.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python3
21
#cython: language_level=3
32
"""
43
This file shows how the to use a BitGenerator to create a distribution.

numpy/random/c_distributions.pxd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!python
21
#cython: wraparound=False, nonecheck=False, boundscheck=False, cdivision=True, language_level=3
32
from numpy cimport npy_intp
43

0 commit comments

Comments
 (0)