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
2a70a3a8
Kaydet (Commit)
2a70a3a8
authored
Mar 10, 2000
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Module unicodedata -- Provides access to the Unicode 3.0 data base.
Written by Marc-Andre Lemburg.
üst
e2d67f98
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
269 additions
and
0 deletions
+269
-0
unicodedata.c
Modules/unicodedata.c
+269
-0
No files found.
Modules/unicodedata.c
0 → 100644
Dosyayı görüntüle @
2a70a3a8
/* ------------------------------------------------------------------------
unicodedata -- Provides access to the Unicode 3.0 data base.
Data was extracted from the Unicode 3.0 UnicodeData.txt file.
Written by Marc-Andre Lemburg (mal@lemburg.com).
(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
------------------------------------------------------------------------ */
#include "Python.h"
#include "unicodedatabase.h"
/* --- Module API --------------------------------------------------------- */
static
PyObject
*
unicodedata_decimal
(
PyObject
*
self
,
PyObject
*
args
)
{
PyUnicodeObject
*
v
;
PyObject
*
defobj
=
NULL
;
long
rc
;
if
(
!
PyArg_ParseTuple
(
args
,
"O!|O:decimal"
,
&
PyUnicode_Type
,
&
v
,
&
defobj
))
goto
onError
;
if
(
PyUnicode_GET_SIZE
(
v
)
!=
1
)
{
PyErr_SetString
(
PyExc_TypeError
,
"need a single Unicode character as parameter"
);
goto
onError
;
}
rc
=
Py_UNICODE_TODECIMAL
(
*
PyUnicode_AS_UNICODE
(
v
));
if
(
rc
<
0
)
{
if
(
defobj
==
NULL
)
{
PyErr_SetString
(
PyExc_ValueError
,
"not a decimal"
);
goto
onError
;
}
else
{
Py_INCREF
(
defobj
);
return
defobj
;
}
}
return
PyInt_FromLong
(
rc
);
onError:
return
NULL
;
}
static
PyObject
*
unicodedata_digit
(
PyObject
*
self
,
PyObject
*
args
)
{
PyUnicodeObject
*
v
;
PyObject
*
defobj
=
NULL
;
long
rc
;
if
(
!
PyArg_ParseTuple
(
args
,
"O!|O:digit"
,
&
PyUnicode_Type
,
&
v
,
&
defobj
))
goto
onError
;
if
(
PyUnicode_GET_SIZE
(
v
)
!=
1
)
{
PyErr_SetString
(
PyExc_TypeError
,
"need a single Unicode character as parameter"
);
goto
onError
;
}
rc
=
Py_UNICODE_TODIGIT
(
*
PyUnicode_AS_UNICODE
(
v
));
if
(
rc
<
0
)
{
if
(
defobj
==
NULL
)
{
PyErr_SetString
(
PyExc_ValueError
,
"not a digit"
);
goto
onError
;
}
else
{
Py_INCREF
(
defobj
);
return
defobj
;
}
}
return
PyInt_FromLong
(
rc
);
onError:
return
NULL
;
}
static
PyObject
*
unicodedata_numeric
(
PyObject
*
self
,
PyObject
*
args
)
{
PyUnicodeObject
*
v
;
PyObject
*
defobj
=
NULL
;
double
rc
;
if
(
!
PyArg_ParseTuple
(
args
,
"O!|O:numeric"
,
&
PyUnicode_Type
,
&
v
,
&
defobj
))
goto
onError
;
if
(
PyUnicode_GET_SIZE
(
v
)
!=
1
)
{
PyErr_SetString
(
PyExc_TypeError
,
"need a single Unicode character as parameter"
);
goto
onError
;
}
rc
=
Py_UNICODE_TONUMERIC
(
*
PyUnicode_AS_UNICODE
(
v
));
if
(
rc
<
0
)
{
if
(
defobj
==
NULL
)
{
PyErr_SetString
(
PyExc_ValueError
,
"not a numeric character"
);
goto
onError
;
}
else
{
Py_INCREF
(
defobj
);
return
defobj
;
}
}
return
PyFloat_FromDouble
(
rc
);
onError:
return
NULL
;
}
static
PyObject
*
unicodedata_category
(
PyObject
*
self
,
PyObject
*
args
)
{
PyUnicodeObject
*
v
;
int
index
;
if
(
!
PyArg_ParseTuple
(
args
,
"O!:category"
,
&
PyUnicode_Type
,
&
v
))
goto
onError
;
if
(
PyUnicode_GET_SIZE
(
v
)
!=
1
)
{
PyErr_SetString
(
PyExc_TypeError
,
"need a single Unicode character as parameter"
);
goto
onError
;
}
index
=
(
int
)
_PyUnicode_Database
[(
int
)
*
PyUnicode_AS_UNICODE
(
v
)].
category
;
if
(
index
<
0
||
index
>
sizeof
(
_PyUnicode_CategoryNames
)
/
sizeof
(
_PyUnicode_CategoryNames
[
0
]))
{
PyErr_Format
(
PyExc_SystemError
,
"category index out of range: %i"
,
index
);
goto
onError
;
}
return
PyString_FromString
(
_PyUnicode_CategoryNames
[
index
]);
onError:
return
NULL
;
}
static
PyObject
*
unicodedata_bidirectional
(
PyObject
*
self
,
PyObject
*
args
)
{
PyUnicodeObject
*
v
;
int
index
;
if
(
!
PyArg_ParseTuple
(
args
,
"O!:bidirectional"
,
&
PyUnicode_Type
,
&
v
))
goto
onError
;
if
(
PyUnicode_GET_SIZE
(
v
)
!=
1
)
{
PyErr_SetString
(
PyExc_TypeError
,
"need a single Unicode character as parameter"
);
goto
onError
;
}
index
=
(
int
)
_PyUnicode_Database
[
(
int
)
*
PyUnicode_AS_UNICODE
(
v
)].
bidirectional
;
if
(
index
<
0
||
index
>
sizeof
(
_PyUnicode_CategoryNames
)
/
sizeof
(
_PyUnicode_CategoryNames
[
0
]))
{
PyErr_Format
(
PyExc_SystemError
,
"bidirectional index out of range: %i"
,
index
);
goto
onError
;
}
return
PyString_FromString
(
_PyUnicode_BidirectionalNames
[
index
]);
onError:
return
NULL
;
}
static
PyObject
*
unicodedata_combining
(
PyObject
*
self
,
PyObject
*
args
)
{
PyUnicodeObject
*
v
;
int
value
;
if
(
!
PyArg_ParseTuple
(
args
,
"O!:combining"
,
&
PyUnicode_Type
,
&
v
))
goto
onError
;
if
(
PyUnicode_GET_SIZE
(
v
)
!=
1
)
{
PyErr_SetString
(
PyExc_TypeError
,
"need a single Unicode character as parameter"
);
goto
onError
;
}
value
=
(
int
)
_PyUnicode_Database
[
(
int
)
*
PyUnicode_AS_UNICODE
(
v
)].
combining
;
return
PyInt_FromLong
(
value
);
onError:
return
NULL
;
}
static
PyObject
*
unicodedata_mirrored
(
PyObject
*
self
,
PyObject
*
args
)
{
PyUnicodeObject
*
v
;
int
value
;
if
(
!
PyArg_ParseTuple
(
args
,
"O!:mirrored"
,
&
PyUnicode_Type
,
&
v
))
goto
onError
;
if
(
PyUnicode_GET_SIZE
(
v
)
!=
1
)
{
PyErr_SetString
(
PyExc_TypeError
,
"need a single Unicode character as parameter"
);
goto
onError
;
}
value
=
(
int
)
_PyUnicode_Database
[(
int
)
*
PyUnicode_AS_UNICODE
(
v
)].
mirrored
;
return
PyInt_FromLong
(
value
);
onError:
return
NULL
;
}
static
PyObject
*
unicodedata_decomposition
(
PyObject
*
self
,
PyObject
*
args
)
{
PyUnicodeObject
*
v
;
const
char
*
value
;
if
(
!
PyArg_ParseTuple
(
args
,
"O!:decomposition"
,
&
PyUnicode_Type
,
&
v
))
goto
onError
;
if
(
PyUnicode_GET_SIZE
(
v
)
!=
1
)
{
PyErr_SetString
(
PyExc_TypeError
,
"need a single Unicode character as parameter"
);
goto
onError
;
}
value
=
_PyUnicode_Database
[(
int
)
*
PyUnicode_AS_UNICODE
(
v
)].
decomposition
;
if
(
value
==
NULL
)
return
PyString_FromString
(
""
);
else
return
PyString_FromString
(
value
);
onError:
return
NULL
;
}
/* XXX Add doc strings. */
static
PyMethodDef
unicodedata_functions
[]
=
{
{
"decimal"
,
unicodedata_decimal
,
1
},
{
"digit"
,
unicodedata_digit
,
1
},
{
"numeric"
,
unicodedata_numeric
,
1
},
{
"category"
,
unicodedata_category
,
1
},
{
"bidirectional"
,
unicodedata_bidirectional
,
1
},
{
"combining"
,
unicodedata_combining
,
1
},
{
"mirrored"
,
unicodedata_mirrored
,
1
},
{
"decomposition"
,
unicodedata_decomposition
,
1
},
{
NULL
,
NULL
}
/* sentinel */
};
DL_EXPORT
(
void
)
initunicodedata
()
{
Py_InitModule
(
"unicodedata"
,
unicodedata_functions
);
}
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