]> granicus.if.org Git - python/commitdiff
Changes to always call list.append with a single argument.
authorGuido van Rossum <guido@python.org>
Tue, 8 Oct 1996 14:06:35 +0000 (14:06 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 8 Oct 1996 14:06:35 +0000 (14:06 +0000)
Lib/Para.py
Lib/lib-old/Para.py
Lib/traceback.py

index c9b3bdd1bd66b2a4bb94d379dca77b7a0f197772..709b575f935bf84b7e5fcd48af9effb6d40a51d6 100644 (file)
@@ -64,11 +64,11 @@ class Para:
                for i in range(len(self.words)):
                        word = self.words[i]
                        if type(word) == Int: continue
-                       fo, te, wi, sp, st, as, de = word
-                       self.words[i] = fo, te, wi, sp, 0, as, de
+                       (fo, te, wi, sp, st, as, de) = word
+                       self.words[i] = (fo, te, wi, sp, 0, as, de)
                        total = total + wi + sp
                if total < tab:
-                       self.words.append(None, '', 0, tab-total, 0, as, de)
+                       self.words.append((None, '', 0, tab-total, 0, as, de))
        #
        # Make a hanging tag: tab to hang, increment indent_left by hang,
        # and reset indent_hang to -hang
index c9b3bdd1bd66b2a4bb94d379dca77b7a0f197772..709b575f935bf84b7e5fcd48af9effb6d40a51d6 100644 (file)
@@ -64,11 +64,11 @@ class Para:
                for i in range(len(self.words)):
                        word = self.words[i]
                        if type(word) == Int: continue
-                       fo, te, wi, sp, st, as, de = word
-                       self.words[i] = fo, te, wi, sp, 0, as, de
+                       (fo, te, wi, sp, st, as, de) = word
+                       self.words[i] = (fo, te, wi, sp, 0, as, de)
                        total = total + wi + sp
                if total < tab:
-                       self.words.append(None, '', 0, tab-total, 0, as, de)
+                       self.words.append((None, '', 0, tab-total, 0, as, de))
        #
        # Make a hanging tag: tab to hang, increment indent_left by hang,
        # and reset indent_hang to -hang
index 982310062df63a7a7411c6942e036828f9f0409f..7488f157a1641eaaa407aee92ed8e6e6b40c02e6 100644 (file)
@@ -66,7 +66,7 @@ def extract_tb(tb, limit = None):
                line = linecache.getline(filename, lineno)
                if line: line = string.strip(line)
                else: line = None
-               list.append(filename, lineno, name, line)
+               list.append((filename, lineno, name, line))
                tb = tb.tb_next
                n = n+1
        return list
@@ -176,7 +176,7 @@ def extract_stack(f=None, limit = None):
                line = linecache.getline(filename, lineno)
                if line: line = string.strip(line)
                else: line = None
-               list.append(filename, lineno, name, line)
+               list.append((filename, lineno, name, line))
                f = f.f_back
                n = n+1
        list.reverse()