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
e0313f20
Kaydet (Commit)
e0313f20
authored
Nis 14, 2008
tarafından
Alexandre Vassalotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Re-indented bytes_getbuffer() and bytes_releasebuffer() to 4-space
indents.
üst
8dcdb25d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
bytesobject.c
Objects/bytesobject.c
+16
-16
No files found.
Objects/bytesobject.c
Dosyayı görüntüle @
e0313f20
...
...
@@ -52,27 +52,27 @@ _getbytevalue(PyObject* arg, int *value)
static
int
bytes_getbuffer
(
PyBytesObject
*
obj
,
Py_buffer
*
view
,
int
flags
)
{
int
ret
;
void
*
ptr
;
if
(
view
==
NULL
)
{
obj
->
ob_exports
++
;
return
0
;
}
if
(
obj
->
ob_bytes
==
NULL
)
ptr
=
""
;
else
ptr
=
obj
->
ob_bytes
;
ret
=
PyBuffer_FillInfo
(
view
,
ptr
,
Py_SIZE
(
obj
),
0
,
flags
);
if
(
ret
>=
0
)
{
obj
->
ob_exports
++
;
}
return
ret
;
int
ret
;
void
*
ptr
;
if
(
view
==
NULL
)
{
obj
->
ob_exports
++
;
return
0
;
}
if
(
obj
->
ob_bytes
==
NULL
)
ptr
=
""
;
else
ptr
=
obj
->
ob_bytes
;
ret
=
PyBuffer_FillInfo
(
view
,
ptr
,
Py_SIZE
(
obj
),
0
,
flags
);
if
(
ret
>=
0
)
{
obj
->
ob_exports
++
;
}
return
ret
;
}
static
void
bytes_releasebuffer
(
PyBytesObject
*
obj
,
Py_buffer
*
view
)
{
obj
->
ob_exports
--
;
obj
->
ob_exports
--
;
}
static
Py_ssize_t
...
...
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