diff options
author | Sami Salonen <ssalonen@gmail.com> | 2017-01-15 20:25:08 +0200 |
---|---|---|
committer | Sami Salonen <ssalonen@gmail.com> | 2017-01-15 20:26:49 +0200 |
commit | 666553e6b27683d7336dafb93100041c6079a97a (patch) | |
tree | ef34982eb2c9f6166303c773a6a74cd438477e6b | |
parent | 1bea8625b9a95b6c06a0193e9bb3303ef8f247be (diff) | |
download | numpy-666553e6b27683d7336dafb93100041c6079a97a.tar.gz |
MAINT: Remove shebang from test modules
-rw-r--r-- | numpy/core/tests/test_arrayprint.py | 1 | ||||
-rw-r--r-- | numpy/distutils/tests/test_misc_util.py | 1 | ||||
-rw-r--r-- | numpy/fft/tests/test_helper.py | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/numpy/core/tests/test_arrayprint.py b/numpy/core/tests/test_arrayprint.py index c761f00ba..9aa7b2609 100644 --- a/numpy/core/tests/test_arrayprint.py +++ b/numpy/core/tests/test_arrayprint.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import division, absolute_import, print_function diff --git a/numpy/distutils/tests/test_misc_util.py b/numpy/distutils/tests/test_misc_util.py index 3e97b6fe2..f7fcbe224 100644 --- a/numpy/distutils/tests/test_misc_util.py +++ b/numpy/distutils/tests/test_misc_util.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python from __future__ import division, absolute_import, print_function from os.path import join, sep, dirname diff --git a/numpy/fft/tests/test_helper.py b/numpy/fft/tests/test_helper.py index cb85755d2..ff56ff63c 100644 --- a/numpy/fft/tests/test_helper.py +++ b/numpy/fft/tests/test_helper.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python """Test functions for fftpack.helper module Copied from fftpack.helper by Pearu Peterson, October 2005 |