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
0efea322
Kaydet (Commit)
0efea322
authored
Tem 27, 2014
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Rerun AC, silence pointer conversion warnings.
üst
7252a6e8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
bytearrayobject.c
Objects/bytearrayobject.c
+2
-2
bytesobject.c
Objects/bytesobject.c
+0
-0
No files found.
Objects/bytearrayobject.c
Dosyayı görüntüle @
0efea322
...
...
@@ -3263,7 +3263,7 @@ bytearray_decode_impl(PyByteArrayObject *self, const char *encoding, const char
{
if
(
encoding
==
NULL
)
encoding
=
PyUnicode_GetDefaultEncoding
();
return
PyUnicode_FromEncodedObject
(
self
,
encoding
,
errors
);
return
PyUnicode_FromEncodedObject
(
(
PyObject
*
)
self
,
encoding
,
errors
);
}
PyDoc_STRVAR
(
alloc_doc
,
...
...
@@ -3307,7 +3307,7 @@ static PyObject *
bytearray_join
(
PyByteArrayObject
*
self
,
PyObject
*
iterable_of_bytes
)
/*[clinic end generated code: output=544e7430032dfdf4 input=aba6b1f9b30fcb8e]*/
{
return
stringlib_bytes_join
(
self
,
iterable_of_bytes
);
return
stringlib_bytes_join
(
(
PyObject
*
)
self
,
iterable_of_bytes
);
}
/*[clinic input]
...
...
Objects/bytesobject.c
Dosyayı görüntüle @
0efea322
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