diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2006-04-04 12:25:03 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2006-04-04 12:25:03 +0000 |
commit | 4c0bf7da9c6c7c5e554fb62792ee0322a3846239 (patch) | |
tree | a5147d93b7dfdfbb101ce0882f0ca6324e415306 /numpy/distutils/core.py | |
parent | 163d94675ef2b4e37700c2293d800b858b698b4a (diff) | |
download | numpy-4c0bf7da9c6c7c5e554fb62792ee0322a3846239.tar.gz |
Fixed typo.
Diffstat (limited to 'numpy/distutils/core.py')
-rw-r--r-- | numpy/distutils/core.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/distutils/core.py b/numpy/distutils/core.py index 6e8eb0db9..6f4ab007f 100644 --- a/numpy/distutils/core.py +++ b/numpy/distutils/core.py @@ -66,6 +66,7 @@ def _dict_append(d, **kws): if isinstance(dv, str): assert isinstance(v,str),`type(v)` d[k] = v + continue raise TypeError,`type(dv)` return |