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
23e275b3
Kaydet (Commit)
23e275b3
authored
Kas 02, 2011
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Port UCS1 and charmap codecs to new API.
üst
9e816684
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
5 deletions
+7
-5
unicodeobject.h
Include/unicodeobject.h
+6
-0
_codecsmodule.c
Modules/_codecsmodule.c
+1
-5
unicodeobject.c
Objects/unicodeobject.c
+0
-0
No files found.
Include/unicodeobject.h
Dosyayı görüntüle @
23e275b3
...
...
@@ -1425,6 +1425,12 @@ PyAPI_FUNC(PyObject*) PyUnicode_EncodeCharmap(
(unicode ordinal -> char ordinal) */
const
char
*
errors
/* error handling */
);
PyAPI_FUNC
(
PyObject
*
)
_PyUnicode_EncodeCharmap
(
PyObject
*
unicode
,
/* Unicode object */
PyObject
*
mapping
,
/* character mapping
(unicode ordinal -> char ordinal) */
const
char
*
errors
/* error handling */
);
#endif
/* Translate a Py_UNICODE buffer of the given length by applying a
...
...
Modules/_codecsmodule.c
Dosyayı görüntüle @
23e275b3
...
...
@@ -992,11 +992,7 @@ charmap_encode(PyObject *self,
str
=
PyUnicode_FromObject
(
str
);
if
(
str
==
NULL
)
return
NULL
;
v
=
codec_tuple
(
PyUnicode_EncodeCharmap
(
PyUnicode_AS_UNICODE
(
str
),
PyUnicode_GET_SIZE
(
str
),
mapping
,
errors
),
v
=
codec_tuple
(
_PyUnicode_EncodeCharmap
(
str
,
mapping
,
errors
),
PyUnicode_GET_SIZE
(
str
));
Py_DECREF
(
str
);
return
v
;
...
...
Objects/unicodeobject.c
Dosyayı görüntüle @
23e275b3
This diff is collapsed.
Click to expand it.
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