From: <fer...@us...> - 2007-10-14 21:14:22
|
Revision: 3946 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3946&view=rev Author: fer_perez Date: 2007-10-14 14:14:18 -0700 (Sun, 14 Oct 2007) Log Message: ----------- Directory reorg Added Paths: ----------- trunk/py4science/tools/course_checklist.py trunk/py4science/tools/course_checklist_umich.py Removed Paths: ------------- trunk/py4science/course_checklist.py trunk/py4science/course_checklist_umich.py Deleted: trunk/py4science/course_checklist.py =================================================================== --- trunk/py4science/course_checklist.py 2007-10-14 21:13:52 UTC (rev 3945) +++ trunk/py4science/course_checklist.py 2007-10-14 21:14:18 UTC (rev 3946) @@ -1,15 +0,0 @@ -#!/usr/bin/env python -"""Minimal test script to check for modules needed in python course""" - -modules = ['numpy','scipy','matplotlib','IPython','mayavi','pyvtk','Image', - 'visual'] - -for mname in modules: - try: - exec "import %s" % mname - except ImportError: - print '*** ERROR: module %s could not be imported.' % mname - else: - print '%s: OK' % mname - -print 'Also remember to check that SPE is installed.' Deleted: trunk/py4science/course_checklist_umich.py =================================================================== --- trunk/py4science/course_checklist_umich.py 2007-10-14 21:13:52 UTC (rev 3945) +++ trunk/py4science/course_checklist_umich.py 2007-10-14 21:14:18 UTC (rev 3946) @@ -1,15 +0,0 @@ -#!/usr/bin/env python -"""Minimal test script to check for modules needed in python course""" - -modules = ['numpy','scipy','matplotlib','IPython'] - - -for mname in modules: - try: - exec "import %s" % mname - except ImportError: - print '*** ERROR: module %s could not be imported.' % mname - else: - print '%s: OK' % mname - -print 'Also remember to check that SPE is installed.' Copied: trunk/py4science/tools/course_checklist.py (from rev 3944, trunk/py4science/course_checklist.py) =================================================================== --- trunk/py4science/tools/course_checklist.py (rev 0) +++ trunk/py4science/tools/course_checklist.py 2007-10-14 21:14:18 UTC (rev 3946) @@ -0,0 +1,15 @@ +#!/usr/bin/env python +"""Minimal test script to check for modules needed in python course""" + +modules = ['numpy','scipy','matplotlib','IPython','mayavi','pyvtk','Image', + 'visual'] + +for mname in modules: + try: + exec "import %s" % mname + except ImportError: + print '*** ERROR: module %s could not be imported.' % mname + else: + print '%s: OK' % mname + +print 'Also remember to check that SPE is installed.' Copied: trunk/py4science/tools/course_checklist_umich.py (from rev 3944, trunk/py4science/course_checklist_umich.py) =================================================================== --- trunk/py4science/tools/course_checklist_umich.py (rev 0) +++ trunk/py4science/tools/course_checklist_umich.py 2007-10-14 21:14:18 UTC (rev 3946) @@ -0,0 +1,15 @@ +#!/usr/bin/env python +"""Minimal test script to check for modules needed in python course""" + +modules = ['numpy','scipy','matplotlib','IPython'] + + +for mname in modules: + try: + exec "import %s" % mname + except ImportError: + print '*** ERROR: module %s could not be imported.' % mname + else: + print '%s: OK' % mname + +print 'Also remember to check that SPE is installed.' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |