summaryrefslogtreecommitdiff
path: root/numpy/distutils/tests
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2007-08-21 18:36:06 +0000
committerStefan van der Walt <stefan@sun.ac.za>2007-08-21 18:36:06 +0000
commitf362b39ddc85a0529196de99b79dbcdce58c77e4 (patch)
treebca178531374771f0685d51decaa03f4d8c8d19e /numpy/distutils/tests
parentcffb9714779adc0156c36bb55d0a1e8a29589408 (diff)
downloadnumpy-f362b39ddc85a0529196de99b79dbcdce58c77e4.tar.gz
Fix whitespace to conform to Python 3000 convention.
Diffstat (limited to 'numpy/distutils/tests')
-rw-r--r--numpy/distutils/tests/swig_ext/src/example.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/distutils/tests/swig_ext/src/example.c b/numpy/distutils/tests/swig_ext/src/example.c
index 7bbb661dd..be151725c 100644
--- a/numpy/distutils/tests/swig_ext/src/example.c
+++ b/numpy/distutils/tests/swig_ext/src/example.c
@@ -1,14 +1,14 @@
/* File : example.c */
-double My_variable = 3.0;
+double My_variable = 3.0;
/* Compute factorial of n */
int fact(int n) {
- if (n <= 1) return 1;
- else return n*fact(n-1);
+ if (n <= 1) return 1;
+ else return n*fact(n-1);
}
/* Compute n mod m */
int my_mod(int n, int m) {
- return(n % m);
+ return(n % m);
}