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
1324c6f5
Kaydet (Commit)
1324c6f5
authored
May 11, 2007
tarafından
Walter Dörwald
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
There's no longer a u prefix for unicode objects
=> drop it. Fix idna test (encode() returns bytes now).
üst
b03ccc04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
test_unicode.py
Lib/test/test_unicode.py
+6
-6
No files found.
Lib/test/test_unicode.py
Dosyayı görüntüle @
1324c6f5
...
...
@@ -55,9 +55,9 @@ class UnicodeTest(
def
test_literals
(
self
):
self
.
assertEqual
(
'
\xff
'
,
'
\u00ff
'
)
self
.
assertEqual
(
'
\uffff
'
,
'
\U0000ffff
'
)
self
.
assertRaises
(
UnicodeError
,
eval
,
'
u
\'\\
Ufffffffe
\'
'
)
self
.
assertRaises
(
UnicodeError
,
eval
,
'
u
\'\\
Uffffffff
\'
'
)
self
.
assertRaises
(
UnicodeError
,
eval
,
'
u
\'\\
U
%08
x
\'
'
%
0x110000
)
self
.
assertRaises
(
UnicodeError
,
eval
,
'
\'\\
Ufffffffe
\'
'
)
self
.
assertRaises
(
UnicodeError
,
eval
,
'
\'\\
Uffffffff
\'
'
)
self
.
assertRaises
(
UnicodeError
,
eval
,
'
\'\\
U
%08
x
\'
'
%
0x110000
)
def
test_repr
(
self
):
if
not
sys
.
platform
.
startswith
(
'java'
):
...
...
@@ -541,7 +541,7 @@ class UnicodeTest(
def
test_codecs_idna
(
self
):
# Test whether trailing dot is preserved
self
.
assertEqual
(
"www.python.org."
.
encode
(
"idna"
),
"www.python.org."
)
self
.
assertEqual
(
"www.python.org."
.
encode
(
"idna"
),
b
"www.python.org."
)
def
test_codecs_errors
(
self
):
# Error handling (encoding)
...
...
@@ -622,8 +622,8 @@ class UnicodeTest(
# This excludes surrogates: in the full range, there would be
# a surrogate pair (\udbff\udc00), which gets converted back
# to a non-BMP character (\U0010fc00)
u
=
u
''
.
join
(
map
(
chr
,
list
(
range
(
0
,
0xd800
))
+
list
(
range
(
0xe000
,
0x10000
))))
u
=
''
.
join
(
map
(
chr
,
list
(
range
(
0
,
0xd800
))
+
list
(
range
(
0xe000
,
0x10000
))))
for
encoding
in
(
'utf-8'
,):
self
.
assertEqual
(
str
(
u
.
encode
(
encoding
),
encoding
),
u
)
...
...
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