This can now run under unix-Python too. You have to pass the folder

to search on the command line in that case.
This commit is contained in:
Jack Jansen 2002-08-05 15:33:44 +00:00
parent ac7cb05415
commit a4741ffe63
1 changed files with 6 additions and 2 deletions

View File

@ -19,8 +19,12 @@ def bgenone(dirname, shortname):
def main():
success = []
failure = []
sys.path.insert(0, ':')
srcdir = os.path.join(os.path.join(sys.prefix, 'Mac'), 'Modules')
sys.path.insert(0, os.curdir)
if len(sys.argv) > 1:
srcdir = sys.argv[1]
else:
srcdir = os.path.join(os.path.join(sys.prefix, 'Mac'), 'Modules')
srcdir = os.path.abspath(srcdir)
contents = os.listdir(srcdir)
for name in contents:
moduledir = os.path.join(srcdir, name)