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
56423e57
Kaydet (Commit)
56423e57
authored
Agu 13, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix segfault when doing string formatting on subclasses of long if
__oct__, __hex__ don't return a string. Klocwork 308
üst
3cb31ac7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
test_format.py
Lib/test/test_format.py
+8
-0
NEWS
Misc/NEWS
+2
-0
stringobject.c
Objects/stringobject.c
+4
-1
No files found.
Lib/test/test_format.py
Dosyayı görüntüle @
56423e57
...
...
@@ -230,6 +230,14 @@ test_exc(u'no format', '1', TypeError,
test_exc
(
u'no format'
,
u'1'
,
TypeError
,
"not all arguments converted during string formatting"
)
class
Foobar
(
long
):
def
__oct__
(
self
):
# Returning a non-string should not blow up.
return
self
+
1
test_exc
(
'
%
o'
,
Foobar
(),
TypeError
,
"expected string or Unicode object, long found"
)
if
sys
.
maxint
==
2
**
31
-
1
:
# crashes 2.2.1 and earlier:
try
:
...
...
Misc/NEWS
Dosyayı görüntüle @
56423e57
...
...
@@ -12,6 +12,8 @@ What's New in Python 2.5 release candidate 1?
Core and builtins
-----------------
- Fix segfault when doing string formatting on subclasses of long.
- Fix bug related to __len__ functions using values > 2**32 on 64-bit machines
with new-style classes.
...
...
Objects/stringobject.c
Dosyayı görüntüle @
56423e57
...
...
@@ -4225,12 +4225,15 @@ _PyString_FormatLong(PyObject *val, int flags, int prec, int type,
if
(
!
result
)
return
NULL
;
buf
=
PyString_AsString
(
result
);
if
(
!
buf
)
return
NULL
;
/* To modify the string in-place, there can only be one reference. */
if
(
result
->
ob_refcnt
!=
1
)
{
PyErr_BadInternalCall
();
return
NULL
;
}
buf
=
PyString_AsString
(
result
);
llen
=
PyString_Size
(
result
);
if
(
llen
>
PY_SSIZE_T_MAX
)
{
PyErr_SetString
(
PyExc_ValueError
,
"string too large in _PyString_FormatLong"
);
...
...
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