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
a40cf31d
Kaydet (Commit)
a40cf31d
authored
Nis 14, 2006
tarafından
Walter Dörwald
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make error message less misleading for u"a..b".encode("idna").
üst
82972e7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
idna.py
Lib/encodings/idna.py
+3
-3
No files found.
Lib/encodings/idna.py
Dosyayı görüntüle @
a40cf31d
...
...
@@ -70,7 +70,7 @@ def ToASCII(label):
# Skip to step 8.
if
0
<
len
(
label
)
<
64
:
return
label
raise
UnicodeError
(
"label too long"
)
raise
UnicodeError
(
"label
empty or
too long"
)
# Step 2: nameprep
label
=
nameprep
(
label
)
...
...
@@ -85,7 +85,7 @@ def ToASCII(label):
# Skip to step 8.
if
0
<
len
(
label
)
<
64
:
return
label
raise
UnicodeError
(
"label too long"
)
raise
UnicodeError
(
"label
empty or
too long"
)
# Step 5: Check ACE prefix
if
label
.
startswith
(
uace_prefix
):
...
...
@@ -100,7 +100,7 @@ def ToASCII(label):
# Step 8: Check size
if
0
<
len
(
label
)
<
64
:
return
label
raise
UnicodeError
(
"label too long"
)
raise
UnicodeError
(
"label
empty or
too long"
)
def
ToUnicode
(
label
):
# Step 1: Check for ASCII
...
...
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