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
7376801f
Kaydet (Commit)
7376801f
authored
Kas 03, 2012
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#8401: merge with 3.2.
üst
1c8bb9f4
c64bcbec
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
0 deletions
+27
-0
test_bytes.py
Lib/test/test_bytes.py
+18
-0
NEWS
Misc/NEWS
+3
-0
bytearrayobject.c
Objects/bytearrayobject.c
+6
-0
No files found.
Lib/test/test_bytes.py
Dosyayı görüntüle @
7376801f
...
...
@@ -871,6 +871,24 @@ class ByteArrayTest(BaseBytesTest):
b
[
3
:
0
]
=
[
42
,
42
,
42
]
self
.
assertEqual
(
b
,
bytearray
([
0
,
1
,
2
,
42
,
42
,
42
,
3
,
4
,
5
,
6
,
7
,
8
,
9
]))
b
[
3
:]
=
b
'foo'
self
.
assertEqual
(
b
,
bytearray
([
0
,
1
,
2
,
102
,
111
,
111
]))
b
[:
3
]
=
memoryview
(
b
'foo'
)
self
.
assertEqual
(
b
,
bytearray
([
102
,
111
,
111
,
102
,
111
,
111
]))
b
[
3
:
4
]
=
[]
self
.
assertEqual
(
b
,
bytearray
([
102
,
111
,
111
,
111
,
111
]))
for
elem
in
[
5
,
-
5
,
0
,
int
(
10e20
),
'str'
,
2.3
,
[
'a'
,
'b'
],
[
b
'a'
,
b
'b'
],
[[]]]:
with
self
.
assertRaises
(
TypeError
):
b
[
3
:
4
]
=
elem
for
elem
in
[[
254
,
255
,
256
],
[
-
256
,
9000
]]:
with
self
.
assertRaises
(
ValueError
):
b
[
3
:
4
]
=
elem
def
test_extended_set_del_slice
(
self
):
indices
=
(
0
,
None
,
1
,
3
,
19
,
300
,
1
<<
333
,
-
1
,
-
2
,
-
31
,
-
300
)
for
start
in
indices
:
...
...
Misc/NEWS
Dosyayı görüntüle @
7376801f
...
...
@@ -12,6 +12,9 @@ What's New in Python 3.3.1?
Core and Builtins
-----------------
- Issue #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now
raises an error.
- Fix segfaults on setting __qualname__ on builtin types and attempting to
delete it on any type.
...
...
Objects/bytearrayobject.c
Dosyayı görüntüle @
7376801f
...
...
@@ -589,6 +589,12 @@ bytearray_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *valu
needed
=
0
;
}
else
if
(
values
==
(
PyObject
*
)
self
||
!
PyByteArray_Check
(
values
))
{
if
(
PyNumber_Check
(
values
)
||
PyUnicode_Check
(
values
))
{
PyErr_SetString
(
PyExc_TypeError
,
"can assign only bytes, buffers, or iterables "
"of ints in range(0, 256)"
);
return
-
1
;
}
/* Make a copy and call this function recursively */
int
err
;
values
=
PyByteArray_FromObject
(
values
);
...
...
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