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
7b876158
Kaydet (Commit)
7b876158
authored
Ock 30, 2008
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #1969: split and rsplit in bytearray are inconsistent
üst
d4cb56d4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
4 deletions
+15
-4
test_bytes.py
Lib/test/test_bytes.py
+10
-1
NEWS
Misc/NEWS
+2
-0
bytesobject.c
Objects/bytesobject.c
+3
-3
No files found.
Lib/test/test_bytes.py
Dosyayı görüntüle @
7b876158
...
...
@@ -706,7 +706,7 @@ class BytesTest(unittest.TestCase):
self
.
assertEqual
(
b
.
rsplit
(
None
,
2
),
[
b
'arf'
,
b
'barf'
])
self
.
assertEqual
(
b
' a bb c '
.
rsplit
(
None
,
0
),
[
b
' a bb c'
])
self
.
assertEqual
(
b
' a bb c '
.
rsplit
(
None
,
1
),
[
b
' a bb'
,
b
'c'
])
self
.
assertEqual
(
b
' a bb c '
.
rsplit
(
None
,
2
),
[
b
' a'
,
b
'bb'
,
b
'c'
])
self
.
assertEqual
(
b
' a bb c '
.
rsplit
(
None
,
2
),
[
b
' a'
,
b
'bb'
,
b
'c'
])
self
.
assertEqual
(
b
' a bb c '
.
rsplit
(
None
,
3
),
[
b
'a'
,
b
'bb'
,
b
'c'
])
def
test_rsplit_bytearray
(
self
):
...
...
@@ -715,6 +715,15 @@ class BytesTest(unittest.TestCase):
def
test_rsplit_string_error
(
self
):
self
.
assertRaises
(
TypeError
,
b
'a b'
.
rsplit
,
' '
)
def
test_rsplit_unicodewhitespace
(
self
):
b
=
b
"
\x09\x0A\x0B\x0C\x0D\x1C\x1D\x1E\x1F
"
self
.
assertEqual
(
b
.
split
(),
[
b
'
\x1c\x1d\x1e\x1f
'
])
self
.
assertEqual
(
b
.
rsplit
(),
[
b
'
\x1c\x1d\x1e\x1f
'
])
ba
=
bytearray
(
b
)
self
.
assertEqual
(
ba
.
split
(),
[
bytearray
(
b
'
\x1c\x1d\x1e\x1f
'
)])
self
.
assertEqual
(
ba
.
rsplit
(),
[
bytearray
(
b
'
\x1c\x1d\x1e\x1f
'
)])
def
test_partition
(
self
):
b
=
b
'mississippi'
self
.
assertEqual
(
b
.
partition
(
b
'ss'
),
(
b
'mi'
,
b
'ss'
,
b
'issippi'
))
...
...
Misc/NEWS
Dosyayı görüntüle @
7b876158
...
...
@@ -12,6 +12,8 @@ What's New in Python 3.0a3?
Core and Builtins
-----------------
- Issue #1969: split and rsplit in bytearray are inconsistent
- map() and itertools.imap() no longer accept None for the first argument.
Use zip() instead.
...
...
Objects/bytesobject.c
Dosyayı görüntüle @
7b876158
...
...
@@ -2388,16 +2388,16 @@ rsplit_whitespace(const char *s, Py_ssize_t len, Py_ssize_t maxcount)
for
(
i
=
j
=
len
-
1
;
i
>=
0
;
)
{
/* find a token */
while
(
i
>=
0
&&
Py_UNICODE_
ISSPACE
(
s
[
i
]))
while
(
i
>=
0
&&
ISSPACE
(
s
[
i
]))
i
--
;
j
=
i
;
while
(
i
>=
0
&&
!
Py_UNICODE_
ISSPACE
(
s
[
i
]))
while
(
i
>=
0
&&
!
ISSPACE
(
s
[
i
]))
i
--
;
if
(
j
>
i
)
{
if
(
maxcount
--
<=
0
)
break
;
SPLIT_ADD
(
s
,
i
+
1
,
j
+
1
);
while
(
i
>=
0
&&
Py_UNICODE_
ISSPACE
(
s
[
i
]))
while
(
i
>=
0
&&
ISSPACE
(
s
[
i
]))
i
--
;
j
=
i
;
}
...
...
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