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
bd28ca65
Kaydet (Commit)
bd28ca65
authored
Tem 28, 2007
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1704793: Raise KeyError if unicodedata.lookup cannot
represent the result in a single character.
üst
0e258c5e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
test_unicodedata.py
Lib/test/test_unicodedata.py
+5
-1
NEWS
Misc/NEWS
+3
-0
unicodedata.c
Modules/unicodedata.c
+11
-1
No files found.
Lib/test/test_unicodedata.py
Dosyayı görüntüle @
bd28ca65
...
...
@@ -6,7 +6,7 @@
"""
#"
import
unittest
,
test
.
test_support
import
hashlib
import
hashlib
,
sys
encoding
=
'utf-8'
...
...
@@ -214,6 +214,10 @@ class UnicodeMiscTest(UnicodeDatabaseTest):
count
+=
1
self
.
assert_
(
count
>=
10
)
# should have tested at least the ASCII digits
def
test_bug_1704793
(
self
):
if
sys
.
maxunicode
==
65535
:
self
.
assertRaises
(
KeyError
,
self
.
db
.
lookup
,
"GOTHIC LETTER FAIHU"
)
def
test_main
():
test
.
test_support
.
run_unittest
(
UnicodeMiscTest
,
...
...
Misc/NEWS
Dosyayı görüntüle @
bd28ca65
...
...
@@ -26,6 +26,9 @@ Core and builtins
Library
-------
- Bug #1704793: Raise KeyError if unicodedata.lookup cannot
represent the result in a single character.
- Change location of the package index to pypi.python.org/pypi
- Bug #1701409: Fix a segfault in printing ctypes.c_char_p and
...
...
Modules/unicodedata.c
Dosyayı görüntüle @
bd28ca65
...
...
@@ -1102,8 +1102,18 @@ unicodedata_lookup(PyObject* self, PyObject* args)
return
NULL
;
}
#ifndef Py_UNICODE_WIDE
if
(
code
>=
0x10000
)
{
/* Raise KeyError for compatibility; the possibly more
correct ValueError was not documented as a possible
exception for 2.5.x and earlier. */
PyErr_Format
(
PyExc_KeyError
,
"result %d larger than sys.maxunicode"
,
code
);
return
NULL
;
}
#endif
str
[
0
]
=
(
Py_UNICODE
)
code
;
return
PyUnicode_FromUnicode
(
str
,
1
);
return
PyUnicode_FromUnicode
(
str
,
1
);
}
/* XXX Add doc strings. */
...
...
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