]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
process(): New function that contains the "orchestration" of the
authorFred Drake <fdrake@acm.org>
Wed, 3 Mar 1999 19:36:23 +0000 (19:36 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 3 Mar 1999 19:36:23 +0000 (19:36 +0000)
    actual work.

main():  Just handle the command line and filename determination,
 calling process() to do the work.

These changes make this more import-friendly.

Doc/tools/indfix.py

index 395f095e75126852dc7a6b28250c2329131cc624..fbf81e65481349f9d2efb97865920d8acfdde63d 100755 (executable)
@@ -43,25 +43,20 @@ def dump_entries(write, entries):
 breakable_re = re.compile(
     r"  \\item (.*) [(](.*)[)]((?:(?:, \d+)|(?:, \\[a-z]*\{\d+\}))+)")
 
-def main():
-    import getopt
-    outfile = None
-    opts, args = getopt.getopt(sys.argv[1:], "o:")
-    for opt, val in opts:
-       if opt in ("-o", "--output"):
-           outfile = val
-    filename = args[0]
-    outfile = outfile or filename
-    if filename == "-":
-       fp = sys.stdin
+
+def process(ifn, ofn=None):
+    if ifn == "-":
+        ifp = sys.stdin
     else:
-       fp = open(filename)
+        ifp = open(ifn)
+    if ofn is None:
+        ofn = ifn
     ofp = StringIO.StringIO()
     entries = []
     match = breakable_re.match
     write = ofp.write
     while 1:
-       line = fp.readline()
+       line = ifp.readline()
        if not line:
            break
        m = match(line)
@@ -79,13 +74,27 @@ def main():
            write(line)
     del write
     del match
-    fp.close()
-    if outfile == "-":
-       fp = sys.stdout
+    ifp.close()
+    data = ofp.getvalue()
+    ofp.close()
+    if ofn == "-":
+       ofp = sys.stdout
     else:
-       fp = open(outfile, "w")
-    fp.write(ofp.getvalue())
-    fp.close()
+       ofp = open(ofn, "w")
+    ofp.write(data)
+    ofp.close()
+
+
+def main():
+    import getopt
+    outfile = None
+    opts, args = getopt.getopt(sys.argv[1:], "o:")
+    for opt, val in opts:
+       if opt in ("-o", "--output"):
+           outfile = val
+    filename = args[0]
+    outfile = outfile or filename
+    process(filename, outfile)
 
 
 if __name__ == "__main__":