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
bf4806ba
Kaydet (Commit)
bf4806ba
authored
Tem 21, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF patch# 1757758 by Alexandre Vassalotti, fixing test_ucn.
üst
b8b108f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
test_ucn.py
Lib/test/test_ucn.py
+6
-6
No files found.
Lib/test/test_ucn.py
Dosyayı görüntüle @
bf4806ba
...
...
@@ -17,7 +17,7 @@ class UnicodeNamesTest(unittest.TestCase):
# Helper that put all \N escapes inside eval'd raw strings,
# to make sure this script runs even if the compiler
# chokes on \N escapes
res
=
eval
(
r'
u
"\N{
%
s}"'
%
name
)
res
=
eval
(
r'"\N{
%
s}"'
%
name
)
self
.
assertEqual
(
res
,
code
)
return
res
...
...
@@ -115,26 +115,26 @@ class UnicodeNamesTest(unittest.TestCase):
self
.
assertRaises
(
TypeError
,
unicodedata
.
lookup
)
self
.
assertRaises
(
KeyError
,
unicodedata
.
lookup
,
'unknown'
)
def
test_strict_eror_handling
(
self
):
def
test_strict_er
r
or_handling
(
self
):
# bogus character name
self
.
assertRaises
(
UnicodeError
,
str
,
"
\\
N{blah}"
,
'unicode-escape'
,
'strict'
str
,
b
"
\\
N{blah}"
,
'unicode-escape'
,
'strict'
)
# long bogus character name
self
.
assertRaises
(
UnicodeError
,
str
,
"
\\
N{
%
s}"
%
(
"x"
*
100000
),
'unicode-escape'
,
'strict'
str
,
bytes
(
"
\\
N{
%
s}"
%
(
"x"
*
100000
)
),
'unicode-escape'
,
'strict'
)
# missing closing brace
self
.
assertRaises
(
UnicodeError
,
str
,
"
\\
N{SPACE"
,
'unicode-escape'
,
'strict'
str
,
b
"
\\
N{SPACE"
,
'unicode-escape'
,
'strict'
)
# missing opening brace
self
.
assertRaises
(
UnicodeError
,
str
,
"
\\
NSPACE"
,
'unicode-escape'
,
'strict'
str
,
b
"
\\
NSPACE"
,
'unicode-escape'
,
'strict'
)
def
test_main
():
...
...
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