]> granicus.if.org Git - python/commitdiff
Jon Nelson <jnelson@users.sourceforge.net>:
authorFred Drake <fdrake@acm.org>
Mon, 12 Feb 2001 15:30:22 +0000 (15:30 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 12 Feb 2001 15:30:22 +0000 (15:30 +0000)
Make the documentation tools compatibile with Python 2.0.

Doc/tools/mkhowto
Doc/tools/mkmodindex
Doc/tools/support.py

index 28f18b6950e59ff1dbfc4926a67c31de73fbdd8e..8826924620b9747d5962088c8a63f372499950ae 100755 (executable)
@@ -297,7 +297,7 @@ class Job:
             # let the doctype-specific handler do some intermediate work:
             #
             self.run("%s %s" % (binary, self.doc))
-            self.latex_runs += 1
+            self.latex_runs = self.latex_runs + 1
             if os.path.isfile("mod%s.idx" % self.doc):
                 self.run("%s -s %s mod%s.idx"
                          % (MAKEINDEX_BINARY, ISTFILE, self.doc))
@@ -319,7 +319,7 @@ class Job:
         if self.use_bibtex:
             self.run("%s %s" % (BIBTEX_BINARY, self.doc))
         self.run("%s %s" % (binary, self.doc))
-        self.latex_runs += 1
+        self.latex_runs = self.latex_runs + 1
 
     def process_synopsis_files(self):
         synopsis_files = glob.glob(self.doc + "*.syn")
index 3bc4b956ea20c721a8c1e050aa1e579e11db9461..b0211a7586ba94634c4c3e1087cbf105d83cb1e2 100755 (executable)
@@ -117,9 +117,9 @@ def main():
     html = string.join(parts, '')
     program = os.path.basename(sys.argv[0])
     fp = options.get_output_file()
-    print >>fp, html.rstrip()
+    fp.write(string.rstrip(html) + "\n")
     if options.outputfile == "-":
-        print >>sys.stderr, "%s: %d index nodes" % (program, num_nodes)
+        sys.stderr.write("%s: %d index nodes\n" % (program, num_nodes))
     else:
         print
         print "%s: %d index nodes" % (program, num_nodes)
index 86ecc6c81fb0d559e98558a8ab9d5b62ea967ab0..836adf4381cbdf163b0714661d2a4b2e0c2e501b 100644 (file)
@@ -8,6 +8,7 @@ __version__ = '$Revision$'
 
 
 import getopt
+import string
 import sys
 
 
@@ -37,9 +38,9 @@ class Options:
 
     def add_args(self, short=None, long=None):
         if short:
-            self.__short_args += short
+            self.__short_args = self.__short_args + short
         if long:
-            self.__long_args += long
+            self.__long_args = self.__long_args + long
 
     def parse(self, args):
         try:
@@ -49,10 +50,10 @@ class Options:
             sys.stdout = sys.stderr
             self.usage()
             sys.exit(2)
-        self.args += args
+        self.args = self.args + args
         for opt, val in opts:
             if opt in ("-a", "--address"):
-                val = val.strip()
+                val = string.strip(val)
                 if val:
                     val = "<address>\n%s\n</address>\n" % val
                     self.variables["address"] = val