summaryrefslogtreecommitdiff
path: root/numpy/f2py/docs/pytest.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/f2py/docs/pytest.py')
-rw-r--r--numpy/f2py/docs/pytest.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/numpy/f2py/docs/pytest.py b/numpy/f2py/docs/pytest.py
deleted file mode 100644
index bf4ef917f..000000000
--- a/numpy/f2py/docs/pytest.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from __future__ import division, absolute_import, print_function
-
-#File: pytest.py
-import Numeric
-def foo(a):
- a = Numeric.array(a)
- m, n = a.shape
- for i in range(m):
- for j in range(n):
- a[i, j] = a[i, j] + 10*(i+1) + (j+1)
- return a
-#eof