Commit d28de23b authored by Guido van Rossum's avatar Guido van Rossum

Fixed a multi-arg append() call, discovered by Mark Favas.

Also removed some unnecessary backslases (inside parens).
parent 7733e12c
...@@ -222,9 +222,9 @@ class BaseFormatter: ...@@ -222,9 +222,9 @@ class BaseFormatter:
self.para.just = self.just self.para.just = self.just
self.nextfont = self.font self.nextfont = self.font
space = int(space * self.space) space = int(space * self.space)
self.para.words.append(self.nextfont, text, \ self.para.words.append((self.nextfont, text,
self.d.textwidth(text), space, space, \ self.d.textwidth(text), space, space,
self.ascent, self.descent) self.ascent, self.descent))
self.nextfont = None self.nextfont = None
# #
def bgn_anchor(self, id): def bgn_anchor(self, id):
...@@ -499,7 +499,7 @@ class StdwinBackEnd(SavingBackEnd): ...@@ -499,7 +499,7 @@ class StdwinBackEnd(SavingBackEnd):
long2 = i, len(p.extract()) long2 = i, len(p.extract())
hit = long1, long2 hit = long1, long2
self.setselection(hit) self.setselection(hit)
self.window.show( \ self.window.show(
(p.left, p.top), (p.right, p.bottom)) (p.left, p.top), (p.right, p.bottom))
break break
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment