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
ec812caf
Kaydet (Commit)
ec812caf
authored
Tem 22, 2009
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #6540: Fixed crash for bytearray.translate() with invalid parameters.
üst
af2406f2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
test_builtin.py
Lib/test/test_builtin.py
+5
-0
NEWS
Misc/NEWS
+2
-0
bytearrayobject.c
Objects/bytearrayobject.c
+5
-3
No files found.
Lib/test/test_builtin.py
Dosyayı görüntüle @
ec812caf
...
...
@@ -1472,6 +1472,11 @@ class BuiltinTest(unittest.TestCase):
self
.
assertEqual
(
bin
(
-
(
2
**
65
)),
'-0b1'
+
'0'
*
65
)
self
.
assertEqual
(
bin
(
-
(
2
**
65
-
1
)),
'-0b'
+
'1'
*
65
)
def
test_bytearray_translate
(
self
):
x
=
bytearray
(
"abc"
)
self
.
assertRaises
(
ValueError
,
x
.
translate
,
"1"
,
1
)
self
.
assertRaises
(
TypeError
,
x
.
translate
,
"1"
*
256
,
1
)
class
TestSorted
(
unittest
.
TestCase
):
def
test_basic
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
ec812caf
...
...
@@ -12,6 +12,8 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
- Issue #6540: Fixed crash for bytearray.translate() with invalid parameters.
- Issue #1616979: Added the cp720 (Arabic DOS) encoding.
- Issue #6070: On posix platforms import no longer copies the execute bit
...
...
Objects/bytearrayobject.c
Dosyayı görüntüle @
ec812caf
...
...
@@ -1465,15 +1465,17 @@ bytearray_translate(PyByteArrayObject *self, PyObject *args)
if
(
vtable
.
len
!=
256
)
{
PyErr_SetString
(
PyExc_ValueError
,
"translation table must be 256 characters long"
);
goto
done
;
PyBuffer_Release
(
&
vtable
);
return
NULL
;
}
table
=
(
const
char
*
)
vtable
.
buf
;
}
if
(
delobj
!=
NULL
)
{
if
(
_getbuffer
(
delobj
,
&
vdel
)
<
0
)
{
delobj
=
NULL
;
/* don't try to release vdel buffer on exit */
goto
done
;
if
(
tableobj
!=
NULL
)
PyBuffer_Release
(
&
vtable
);
return
NULL
;
}
}
else
{
...
...
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