summaryrefslogtreecommitdiff
path: root/numpy/random/setup.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-08-18 11:51:25 -0600
committerCharles Harris <charlesr.harris@gmail.com>2013-08-18 11:51:25 -0600
commitfbd6510d58a47ea0d166c48a82793f05425406e4 (patch)
tree330ce703eb02d20f96099c3fe0fc36ae33d4905b /numpy/random/setup.py
parent8ddb0ce0acafe75d78df528b4d2540dfbf4b364d (diff)
downloadnumpy-fbd6510d58a47ea0d166c48a82793f05425406e4.tar.gz
STY: Giant comma spacing fixup.
Run the 2to3 ws_comma fixer on *.py files. Some lines are now too long and will need to be broken at some point. OTOH, some lines were already too long and need to be broken at some point. Now seems as good a time as any to do this with open PRs at a minimum.
Diffstat (limited to 'numpy/random/setup.py')
-rw-r--r--numpy/random/setup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py
index 917623bba..c7e792f2f 100644
--- a/numpy/random/setup.py
+++ b/numpy/random/setup.py
@@ -19,7 +19,7 @@ def needs_mingw_ftime_workaround():
def configuration(parent_package='',top_path=None):
from numpy.distutils.misc_util import Configuration, get_mathlibs
- config = Configuration('random',parent_package,top_path)
+ config = Configuration('random', parent_package, top_path)
def generate_libraries(ext, build_dir):
config_cmd = config.get_config_cmd()
@@ -41,9 +41,9 @@ def configuration(parent_package='',top_path=None):
['mtrand.c', 'randomkit.c', 'initarray.c',
'distributions.c']]+[generate_libraries],
libraries=libs,
- depends = [join('mtrand','*.h'),
- join('mtrand','*.pyx'),
- join('mtrand','*.pxi'),
+ depends = [join('mtrand', '*.h'),
+ join('mtrand', '*.pyx'),
+ join('mtrand', '*.pxi'),
],
define_macros = defs,
)