mirror of https://github.com/python/cpython
Ported from 2.4 branch:
Patch by Ori Avtalion to fix a minor display glitch in the RightArrow.
This commit is contained in:
parent
0f194234dc
commit
538561e466
|
@ -593,8 +593,9 @@ Library
|
||||||
once when a size argument is given. This prevents a buffer overflow in the
|
once when a size argument is given. This prevents a buffer overflow in the
|
||||||
tokenizer with very long source lines.
|
tokenizer with very long source lines.
|
||||||
|
|
||||||
- Bug #1083110: ``zlib.decompress.flush()`` would segfault if called immediately
|
- Bug #1083110: ``zlib.decompress.flush()`` would segfault if called
|
||||||
after creating the object, without any intervening ``.decompress()`` calls.
|
immediately after creating the object, without any intervening
|
||||||
|
``.decompress()`` calls.
|
||||||
|
|
||||||
- The reconvert.quote function can now emit triple-quoted strings. The
|
- The reconvert.quote function can now emit triple-quoted strings. The
|
||||||
reconvert module now has some simple documentation.
|
reconvert module now has some simple documentation.
|
||||||
|
@ -739,6 +740,8 @@ Tools/Demos
|
||||||
|
|
||||||
- Patch #1177597: Correct Complex.__init__.
|
- Patch #1177597: Correct Complex.__init__.
|
||||||
|
|
||||||
|
- Fixed a display glitch in Pynche, which could cause the right arrow to
|
||||||
|
wiggle over by a pixel.
|
||||||
|
|
||||||
What's New in Python 2.4 final?
|
What's New in Python 2.4 final?
|
||||||
===============================
|
===============================
|
||||||
|
|
|
@ -151,9 +151,9 @@ class RightArrow(LeftArrow):
|
||||||
return arrow, text
|
return arrow, text
|
||||||
|
|
||||||
def _x(self):
|
def _x(self):
|
||||||
coords = self._canvas.bbox(self._TAG)
|
coords = self._canvas.coords(self._TAG)
|
||||||
assert coords
|
assert coords
|
||||||
return coords[2] - 6 # BAW: kludge
|
return coords[0] + self._ARROWWIDTH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue