diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2007-01-08 21:56:54 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2007-01-08 21:56:54 +0000 |
commit | 1bd2d49ef378fb869d015cef32c3e44a4c03a8f0 (patch) | |
tree | 43335baf1da0b6e9de0ad806e721a077e3cbfa45 /numpy/distutils/interactive.py | |
parent | 98b6d48b07f4eadfb7d1fc41483debe7e07eecd6 (diff) | |
download | numpy-1bd2d49ef378fb869d015cef32c3e44a4c03a8f0.tar.gz |
Whitespace cleanup.
Diffstat (limited to 'numpy/distutils/interactive.py')
-rw-r--r-- | numpy/distutils/interactive.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/numpy/distutils/interactive.py b/numpy/distutils/interactive.py index dd3ab2f34..46bc6eeca 100644 --- a/numpy/distutils/interactive.py +++ b/numpy/distutils/interactive.py @@ -1,4 +1,3 @@ - import os import sys from pprint import pformat @@ -12,7 +11,7 @@ def show_information(*args): for a in ['name']: print 'os.%s = %s' % (a,pformat(getattr(os,a))) if hasattr(os,'uname'): - print 'system,node,release,version,machine = ',os.uname() + print 'system,node,release,version,machine = ',os.uname() def show_environ(*args): for k,i in os.environ.items(): @@ -29,7 +28,7 @@ def show_compilers(*args): def show_tasks(argv,ccompiler,fcompiler): print """\ -Tasks: +Tasks: i - Show python/platform/machine information ie - Show environment information c - Show C compilers information @@ -65,7 +64,7 @@ def edit_argv(*args): if s: argv[1:] = splitcmdline(s) return - + def interactive_sys_argv(argv): print '='*72 print 'Starting interactive session' @@ -186,4 +185,3 @@ def interactive_sys_argv(argv): print '-'*72 return argv - |