Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
538561e4
Kaydet (Commit)
538561e4
authored
Ock 01, 2006
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Ported from 2.4 branch:
Patch by Ori Avtalion to fix a minor display glitch in the RightArrow.
üst
0f194234
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
NEWS
Misc/NEWS
+5
-2
StripViewer.py
Tools/pynche/StripViewer.py
+2
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
538561e4
...
@@ -593,8 +593,9 @@ Library
...
@@ -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
...
@@ -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
?
===============================
===============================
...
...
Tools/pynche/StripViewer.py
Dosyayı görüntüle @
538561e4
...
@@ -151,9 +151,9 @@ class RightArrow(LeftArrow):
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment