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
5f512599
Kaydet (Commit)
5f512599
authored
Haz 04, 2004
tarafından
Hye-Shik Chang
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add iswide() and width() method for UserString according as the
addition to unicode objects.
üst
0701bd64
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
1 deletion
+31
-1
UserString.py
Lib/UserString.py
+4
-0
string_tests.py
Lib/test/string_tests.py
+25
-0
test_userstring.py
Lib/test/test_userstring.py
+2
-1
No files found.
Lib/UserString.py
Dosyayı görüntüle @
5f512599
...
...
@@ -126,6 +126,10 @@ class UserString:
def
upper
(
self
):
return
self
.
__class__
(
self
.
data
.
upper
())
def
zfill
(
self
,
width
):
return
self
.
__class__
(
self
.
data
.
zfill
(
width
))
# the following methods are defined for unicode objects only:
def
iswide
(
self
):
return
self
.
data
.
iswide
()
def
width
(
self
):
return
self
.
data
.
width
()
class
MutableString
(
UserString
):
"""mutable string objects
...
...
Lib/test/string_tests.py
Dosyayı görüntüle @
5f512599
...
...
@@ -695,3 +695,28 @@ class MixinStrUserStringTest:
self
.
checkraises
(
TypeError
,
'xyz'
,
'decode'
,
42
)
self
.
checkraises
(
TypeError
,
'xyz'
,
'encode'
,
42
)
class
MixinUnicodeUserStringTest
:
# Additional tests that only work with
# unicode compatible object, i.e. unicode and UserString
def
test_iswide
(
self
):
self
.
checkequal
(
False
,
u''
,
'iswide'
)
self
.
checkequal
(
False
,
u'
\x1f
'
,
'iswide'
)
# Neutral
self
.
checkequal
(
False
,
u'
\x20
'
,
'iswide'
)
# Narrow
self
.
checkequal
(
True
,
u'
\u2329
'
,
'iswide'
)
# Wide
self
.
checkequal
(
False
,
u'
\uff64
'
,
'iswide'
)
# Half
self
.
checkequal
(
True
,
u'
\u3000
'
,
'iswide'
)
# Full
self
.
checkequal
(
False
,
u'
\u2460
'
,
'iswide'
)
# Ambiguous
self
.
checkequal
(
True
,
u'
\ud55c\uae00
'
,
'iswide'
)
self
.
checkequal
(
False
,
u'
\ud55c\u2606\uae00
'
,
'iswide'
)
def
test_width
(
self
):
self
.
checkequal
(
0
,
u''
,
'width'
)
self
.
checkequal
(
4
,
u'abcd'
,
'width'
)
self
.
checkequal
(
2
,
u'
\u0187\u01c9
'
,
'width'
)
self
.
checkequal
(
3
,
u'
\u2460\u2329
'
,
'width'
)
self
.
checkequal
(
3
,
u'
\u2329\u2460
'
,
'width'
)
self
.
checkequal
(
4
,
u'
\ud55c\uae00
'
,
'width'
)
self
.
checkequal
(
5
,
u'
\ud55c\u2606\uae00
'
,
'width'
)
Lib/test/test_userstring.py
Dosyayı görüntüle @
5f512599
...
...
@@ -11,7 +11,8 @@ class UserStringTest(
string_tests
.
CommonTest
,
string_tests
.
MixinStrUnicodeUserStringTest
,
string_tests
.
MixinStrStringUserStringTest
,
string_tests
.
MixinStrUserStringTest
string_tests
.
MixinStrUserStringTest
,
string_tests
.
MixinUnicodeUserStringTest
):
type2test
=
UserString
...
...
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