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
d78f6cf9
Kaydet (Commit)
d78f6cf9
authored
Agu 08, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace normalization.
üst
3c8ba93e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
unicodeobject.h
Include/unicodeobject.h
+12
-12
No files found.
Include/unicodeobject.h
Dosyayı görüntüle @
d78f6cf9
...
@@ -710,7 +710,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF7(
...
@@ -710,7 +710,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF7(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeUTF7
(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeUTF7
(
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
Py_ssize_t
length
,
/* number of Py_UNICODE chars to encode */
Py_ssize_t
length
,
/* number of Py_UNICODE chars to encode */
int
encodeSetO
,
/* force the encoder to encode characters in
int
encodeSetO
,
/* force the encoder to encode characters in
Set O, as described in RFC2152 */
Set O, as described in RFC2152 */
int
encodeWhiteSpace
,
/* force the encoder to encode space, tab,
int
encodeWhiteSpace
,
/* force the encoder to encode space, tab,
...
@@ -730,7 +730,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8Stateful(
...
@@ -730,7 +730,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8Stateful(
const
char
*
string
,
/* UTF-8 encoded string */
const
char
*
string
,
/* UTF-8 encoded string */
Py_ssize_t
length
,
/* size of string */
Py_ssize_t
length
,
/* size of string */
const
char
*
errors
,
/* error handling */
const
char
*
errors
,
/* error handling */
Py_ssize_t
*
consumed
/* bytes consumed */
Py_ssize_t
*
consumed
/* bytes consumed */
);
);
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_AsUTF8String
(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_AsUTF8String
(
...
@@ -739,7 +739,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsUTF8String(
...
@@ -739,7 +739,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsUTF8String(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeUTF8
(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeUTF8
(
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
Py_ssize_t
length
,
/* number of Py_UNICODE chars to encode */
Py_ssize_t
length
,
/* number of Py_UNICODE chars to encode */
const
char
*
errors
/* error handling */
const
char
*
errors
/* error handling */
);
);
...
@@ -784,7 +784,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
...
@@ -784,7 +784,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
int
*
byteorder
,
/* pointer to byteorder to use
int
*
byteorder
,
/* pointer to byteorder to use
0=native;-1=LE,1=BE; updated on
0=native;-1=LE,1=BE; updated on
exit */
exit */
Py_ssize_t
*
consumed
/* bytes consumed */
Py_ssize_t
*
consumed
/* bytes consumed */
);
);
/* Returns a Python string using the UTF-16 encoding in native byte
/* Returns a Python string using the UTF-16 encoding in native byte
...
@@ -816,7 +816,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsUTF16String(
...
@@ -816,7 +816,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsUTF16String(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeUTF16
(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeUTF16
(
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
Py_ssize_t
length
,
/* number of Py_UNICODE chars to encode */
Py_ssize_t
length
,
/* number of Py_UNICODE chars to encode */
const
char
*
errors
,
/* error handling */
const
char
*
errors
,
/* error handling */
int
byteorder
/* byteorder to use 0=BOM+native;-1=LE,1=BE */
int
byteorder
/* byteorder to use 0=BOM+native;-1=LE,1=BE */
);
);
...
@@ -835,7 +835,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsUnicodeEscapeString(
...
@@ -835,7 +835,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsUnicodeEscapeString(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeUnicodeEscape
(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeUnicodeEscape
(
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
Py_ssize_t
length
/* Number of Py_UNICODE chars to encode */
Py_ssize_t
length
/* Number of Py_UNICODE chars to encode */
);
);
/* --- Raw-Unicode-Escape Codecs ------------------------------------------ */
/* --- Raw-Unicode-Escape Codecs ------------------------------------------ */
...
@@ -852,7 +852,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsRawUnicodeEscapeString(
...
@@ -852,7 +852,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsRawUnicodeEscapeString(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeRawUnicodeEscape
(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeRawUnicodeEscape
(
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
Py_ssize_t
length
/* Number of Py_UNICODE chars to encode */
Py_ssize_t
length
/* Number of Py_UNICODE chars to encode */
);
);
/* --- Unicode Internal Codec ---------------------------------------------
/* --- Unicode Internal Codec ---------------------------------------------
...
@@ -883,7 +883,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsLatin1String(
...
@@ -883,7 +883,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsLatin1String(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeLatin1
(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeLatin1
(
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
Py_ssize_t
length
,
/* Number of Py_UNICODE chars to encode */
Py_ssize_t
length
,
/* Number of Py_UNICODE chars to encode */
const
char
*
errors
/* error handling */
const
char
*
errors
/* error handling */
);
);
...
@@ -905,7 +905,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsASCIIString(
...
@@ -905,7 +905,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsASCIIString(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeASCII
(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeASCII
(
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
Py_ssize_t
length
,
/* Number of Py_UNICODE chars to encode */
Py_ssize_t
length
,
/* Number of Py_UNICODE chars to encode */
const
char
*
errors
/* error handling */
const
char
*
errors
/* error handling */
);
);
...
@@ -968,7 +968,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_EncodeCharmap(
...
@@ -968,7 +968,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_EncodeCharmap(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_TranslateCharmap
(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_TranslateCharmap
(
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
Py_ssize_t
length
,
/* Number of Py_UNICODE chars to encode */
Py_ssize_t
length
,
/* Number of Py_UNICODE chars to encode */
PyObject
*
table
,
/* Translate table */
PyObject
*
table
,
/* Translate table */
const
char
*
errors
/* error handling */
const
char
*
errors
/* error handling */
);
);
...
@@ -996,7 +996,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsMBCSString(
...
@@ -996,7 +996,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_AsMBCSString(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeMBCS
(
PyAPI_FUNC
(
PyObject
*
)
PyUnicode_EncodeMBCS
(
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
const
Py_UNICODE
*
data
,
/* Unicode char buffer */
Py_ssize_t
length
,
/* Number of Py_UNICODE chars to encode */
Py_ssize_t
length
,
/* Number of Py_UNICODE chars to encode */
const
char
*
errors
/* error handling */
const
char
*
errors
/* error handling */
);
);
...
@@ -1028,7 +1028,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_EncodeMBCS(
...
@@ -1028,7 +1028,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_EncodeMBCS(
PyAPI_FUNC
(
int
)
PyUnicode_EncodeDecimal
(
PyAPI_FUNC
(
int
)
PyUnicode_EncodeDecimal
(
Py_UNICODE
*
s
,
/* Unicode buffer */
Py_UNICODE
*
s
,
/* Unicode buffer */
Py_ssize_t
length
,
/* Number of Py_UNICODE chars to encode */
Py_ssize_t
length
,
/* Number of Py_UNICODE chars to encode */
char
*
output
,
/* Output buffer; must have size >= length */
char
*
output
,
/* Output buffer; must have size >= length */
const
char
*
errors
/* error handling */
const
char
*
errors
/* error handling */
);
);
...
...
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