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
6364927c
Kaydet (Commit)
6364927c
authored
Eyl 29, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
PyLocale_strxfrm() uses the new Unicode API
üst
fe9a861e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
24 deletions
+15
-24
_localemodule.c
Modules/_localemodule.c
+15
-24
No files found.
Modules/_localemodule.c
Dosyayı görüntüle @
6364927c
...
...
@@ -271,31 +271,22 @@ Return a string that can be used as a key for locale-aware comparisons.");
static
PyObject
*
PyLocale_strxfrm
(
PyObject
*
self
,
PyObject
*
args
)
{
Py
_UNICODE
*
s0
;
Py_ssize_t
n
0
;
wchar_t
*
s
,
*
buf
=
NULL
;
size_t
n
1
,
n
2
;
Py
Object
*
str
;
Py_ssize_t
n
1
;
wchar_t
*
s
=
NULL
,
*
buf
=
NULL
;
size_t
n2
;
PyObject
*
result
=
NULL
;
#if Py_UNICODE_SIZE != SIZEOF_WCHAR_T
Py_ssize_t
i
;
#endif
if
(
!
PyArg_ParseTuple
(
args
,
"
u#:strxfrm"
,
&
s0
,
&
n0
))
if
(
!
PyArg_ParseTuple
(
args
,
"
U:strxfrm"
,
&
str
))
return
NULL
;
#if Py_UNICODE_SIZE == SIZEOF_WCHAR_T
s
=
(
wchar_t
*
)
s0
;
#else
s
=
PyMem_Malloc
((
n0
+
1
)
*
sizeof
(
wchar_t
));
if
(
!
s
)
return
PyErr_NoMemory
();
for
(
i
=
0
;
i
<=
n0
;
i
++
)
s
[
i
]
=
s0
[
i
];
#endif
s
=
PyUnicode_AsWideCharString
(
str
,
&
n1
);
if
(
s
==
NULL
)
goto
exit
;
/* assume no change in size, first */
n1
=
wcslen
(
s
)
+
1
;
buf
=
PyMem_Malloc
(
n1
*
sizeof
(
wchar_t
));
n1
=
n1
+
1
;
buf
=
PyMem_Malloc
(
n1
*
sizeof
(
wchar_t
));
if
(
!
buf
)
{
PyErr_NoMemory
();
goto
exit
;
...
...
@@ -311,11 +302,11 @@ PyLocale_strxfrm(PyObject* self, PyObject* args)
n2
=
wcsxfrm
(
buf
,
s
,
n2
+
1
);
}
result
=
PyUnicode_FromWideChar
(
buf
,
n2
);
exit:
if
(
buf
)
PyMem_Free
(
buf
);
#if Py_UNICODE_SIZE != SIZEOF_WCHAR_T
PyMem_Free
(
s
);
#endif
exit:
if
(
buf
)
PyMem_Free
(
buf
);
if
(
s
)
PyMem_Free
(
s
);
return
result
;
}
#endif
...
...
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