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
57e7447c
Kaydet (Commit)
57e7447c
authored
Şub 20, 2005
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
* Beef-up tests for str.count().
* Speed-up str.count() by using memchr() to fly between first char matches.
üst
7cbf1bcb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
2 deletions
+35
-2
string_tests.py
Lib/test/string_tests.py
+28
-0
stringobject.c
Objects/stringobject.c
+7
-2
No files found.
Lib/test/string_tests.py
Dosyayı görüntüle @
57e7447c
...
...
@@ -114,6 +114,33 @@ class CommonTest(unittest.TestCase):
self
.
checkraises
(
TypeError
,
'hello'
,
'count'
)
self
.
checkraises
(
TypeError
,
'hello'
,
'count'
,
42
)
# For a variety of combinations,
# verify that str.count() matches an equivalent function
# replacing all occurrences and then differencing the string lengths
charset
=
[
''
,
'a'
,
'b'
]
digits
=
7
base
=
len
(
charset
)
teststrings
=
set
()
for
i
in
xrange
(
base
**
digits
):
entry
=
[]
for
j
in
xrange
(
digits
):
i
,
m
=
divmod
(
i
,
base
)
entry
.
append
(
charset
[
m
])
teststrings
.
add
(
''
.
join
(
entry
))
teststrings
=
list
(
teststrings
)
for
i
in
teststrings
:
i
=
self
.
fixtype
(
i
)
n
=
len
(
i
)
for
j
in
teststrings
:
r1
=
i
.
count
(
j
)
if
j
:
r2
,
rem
=
divmod
(
n
-
len
(
i
.
replace
(
j
,
''
)),
len
(
j
))
else
:
r2
,
rem
=
len
(
i
)
+
1
,
0
if
rem
or
r1
!=
r2
:
self
.
assertEqual
(
rem
,
0
)
self
.
assertEqual
(
r1
,
r2
)
def
test_find
(
self
):
self
.
checkequal
(
0
,
'abcdefghiabc'
,
'find'
,
'abc'
)
self
.
checkequal
(
9
,
'abcdefghiabc'
,
'find'
,
'abc'
,
1
)
...
...
@@ -135,6 +162,7 @@ class CommonTest(unittest.TestCase):
i
,
m
=
divmod
(
i
,
base
)
entry
.
append
(
charset
[
m
])
teststrings
.
add
(
''
.
join
(
entry
))
teststrings
=
list
(
teststrings
)
for
i
in
teststrings
:
i
=
self
.
fixtype
(
i
)
for
j
in
teststrings
:
...
...
Objects/stringobject.c
Dosyayı görüntüle @
57e7447c
...
...
@@ -2145,7 +2145,7 @@ interpreted as in slice notation.");
static
PyObject
*
string_count
(
PyStringObject
*
self
,
PyObject
*
args
)
{
const
char
*
s
=
PyString_AS_STRING
(
self
),
*
sub
;
const
char
*
s
=
PyString_AS_STRING
(
self
),
*
sub
,
*
t
;
int
len
=
PyString_GET_SIZE
(
self
),
n
;
int
i
=
0
,
last
=
INT_MAX
;
int
m
,
r
;
...
...
@@ -2186,11 +2186,16 @@ string_count(PyStringObject *self, PyObject *args)
}
else
{
i
++
;
}
if
(
i
>=
m
)
break
;
t
=
memchr
(
s
+
i
,
sub
[
0
],
m
-
i
);
if
(
t
==
NULL
)
break
;
i
=
t
-
s
;
}
return
PyInt_FromLong
((
long
)
r
);
}
PyDoc_STRVAR
(
swapcase__doc__
,
"S.swapcase() -> string
\n
\
\n
\
...
...
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