[Scipy-svn] r3336 - trunk/scipy/io
scipy-svn@scip...
scipy-svn@scip...
Thu Sep 20 00:51:37 CDT 2007
Author: jarrod.millman
Date: 2007-09-20 00:51:33 -0500 (Thu, 20 Sep 2007)
New Revision: 3336
Modified:
trunk/scipy/io/path.py
Log:
better integrate code with scipy
Modified: trunk/scipy/io/path.py
===================================================================
--- trunk/scipy/io/path.py 2007-09-20 05:48:37 UTC (rev 3335)
+++ trunk/scipy/io/path.py 2007-09-20 05:51:33 UTC (rev 3336)
@@ -2,14 +2,12 @@
Example:
-from path import path
+from scipy.io.path import path
d = path('/home/guido/bin')
for f in d.files('*.py'):
f.chmod(0755)
-This module requires Python 2.2 or later.
-
URL: http://www.jorendorff.com/articles/python/path
Author: Jason Orendorff <jason.orendorff\x40gmail\x2ecom> (and others - see the url!)
Date: 9 Mar 2007
@@ -27,8 +25,6 @@
# - guess_content_type() method?
# - Perhaps support arguments to touch().
-from __future__ import generators
-
import sys, warnings, os, fnmatch, glob, shutil, codecs, md5
__version__ = '2.2'
More information about the Scipy-svn
mailing list