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
c3509129
Kaydet (Commit)
c3509129
authored
Mar 11, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Adjust CJK Ideograph range to Unicode 4.1.
üst
88ca467c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
13 deletions
+12
-13
unicodedata.c
Modules/unicodedata.c
+12
-13
No files found.
Modules/unicodedata.c
Dosyayı görüntüle @
c3509129
...
...
@@ -803,7 +803,7 @@ is_unified_ideograph(Py_UCS4 code)
{
return
(
(
0x3400
<=
code
&&
code
<=
0x4DB5
)
||
/* CJK Ideograph Extension A */
(
0x4E00
<=
code
&&
code
<=
0x9F
A5
)
||
/* CJK Ideograph */
(
0x4E00
<=
code
&&
code
<=
0x9F
BB
)
||
/* CJK Ideograph */
(
0x20000
<=
code
&&
code
<=
0x2A6D6
));
/* CJK Ideograph Extension B */
}
...
...
@@ -815,6 +815,17 @@ _getucname(PyObject *self, Py_UCS4 code, char* buffer, int buflen)
int
word
;
unsigned
char
*
w
;
if
(
code
>=
0x110000
)
return
0
;
if
(
self
)
{
const
change_record
*
old
=
get_old_record
(
self
,
code
);
if
(
old
->
category_changed
==
0
)
{
/* unassigned */
return
0
;
}
}
if
(
SBase
<=
code
&&
code
<
SBase
+
SCount
)
{
/* Hangul syllable. */
int
SIndex
=
code
-
SBase
;
...
...
@@ -845,18 +856,6 @@ _getucname(PyObject *self, Py_UCS4 code, char* buffer, int buflen)
return
1
;
}
if
(
code
>=
0x110000
)
return
0
;
if
(
self
)
{
const
change_record
*
old
=
get_old_record
(
self
,
code
);
if
(
old
->
category_changed
==
0
)
{
/* unassigned */
return
0
;
}
}
/* get offset into phrasebook */
offset
=
phrasebook_offset1
[(
code
>>
phrasebook_shift
)];
offset
=
phrasebook_offset2
[(
offset
<<
phrasebook_shift
)
+
...
...
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