diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-08-18 16:19:20 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-08-18 16:19:20 -0700 |
commit | 6c729b4423857850e6553cf6c2d0fc8b026036dd (patch) | |
tree | 330ce703eb02d20f96099c3fe0fc36ae33d4905b /numpy/oldnumeric/matrix.py | |
parent | 13b0b272f764c14bc4ac34f5b19fd030d9c611a4 (diff) | |
parent | fbd6510d58a47ea0d166c48a82793f05425406e4 (diff) | |
download | numpy-6c729b4423857850e6553cf6c2d0fc8b026036dd.tar.gz |
Merge pull request #3635 from charris/giant-style-cleanup
Giant style cleanup
Diffstat (limited to 'numpy/oldnumeric/matrix.py')
-rw-r--r-- | numpy/oldnumeric/matrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/oldnumeric/matrix.py b/numpy/oldnumeric/matrix.py index 25dfe6302..35c795e9d 100644 --- a/numpy/oldnumeric/matrix.py +++ b/numpy/oldnumeric/matrix.py @@ -28,7 +28,7 @@ _todelete = ''.join(_todelete) def _eval(astr): - return eval(astr.translate(_table,_todelete)) + return eval(astr.translate(_table, _todelete)) def _convert_from_string(data): data.find |