mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Fixed a multi-arg append() call, discovered by Mark Favas.
Also removed some unnecessary backslases (inside parens).
This commit is contained in:
parent
7733e12c9c
commit
d28de23bda
1 changed files with 4 additions and 4 deletions
|
@ -222,9 +222,9 @@ class BaseFormatter:
|
|||
self.para.just = self.just
|
||||
self.nextfont = self.font
|
||||
space = int(space * self.space)
|
||||
self.para.words.append(self.nextfont, text, \
|
||||
self.d.textwidth(text), space, space, \
|
||||
self.ascent, self.descent)
|
||||
self.para.words.append((self.nextfont, text,
|
||||
self.d.textwidth(text), space, space,
|
||||
self.ascent, self.descent))
|
||||
self.nextfont = None
|
||||
#
|
||||
def bgn_anchor(self, id):
|
||||
|
@ -499,7 +499,7 @@ class StdwinBackEnd(SavingBackEnd):
|
|||
long2 = i, len(p.extract())
|
||||
hit = long1, long2
|
||||
self.setselection(hit)
|
||||
self.window.show( \
|
||||
self.window.show(
|
||||
(p.left, p.top), (p.right, p.bottom))
|
||||
break
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue