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
5a04aec3
Kaydet (Commit)
5a04aec3
authored
Haz 25, 2002
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix SF bug 546434 -- buffer slice type inconsistent.
üst
17031bf4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
13 deletions
+5
-13
NEWS
Misc/NEWS
+5
-0
bufferobject.c
Objects/bufferobject.c
+0
-13
No files found.
Misc/NEWS
Dosyayı görüntüle @
5a04aec3
...
...
@@ -6,6 +6,11 @@ Type/class unification and new-style classes
Core and builtins
- Slices and repetitions of buffer objects now consistently return
a string. Formerly, strings would be returned most of the time,
but a buffer object would be returned when the repetition count
was one or when the slice range was all inclusive.
- The __slots__ variable can now mention "private" names, and the
right thing will happen (e.g. __slots__ = ["__foo"]).
...
...
Objects/bufferobject.c
Dosyayı görüntüle @
5a04aec3
...
...
@@ -296,13 +296,6 @@ buffer_concat(PyBufferObject *self, PyObject *other)
if
(
(
count
=
(
*
pb
->
bf_getreadbuffer
)(
other
,
0
,
&
p2
))
<
0
)
return
NULL
;
/* optimize special case */
if
(
count
==
0
)
{
Py_INCREF
(
self
);
return
(
PyObject
*
)
self
;
}
ob
=
PyString_FromStringAndSize
(
NULL
,
self
->
b_size
+
count
);
p1
=
PyString_AS_STRING
(
ob
);
memcpy
(
p1
,
self
->
b_ptr
,
self
->
b_size
);
...
...
@@ -361,12 +354,6 @@ buffer_slice(PyBufferObject *self, int left, int right)
right
=
0
;
if
(
right
>
self
->
b_size
)
right
=
self
->
b_size
;
if
(
left
==
0
&&
right
==
self
->
b_size
)
{
/* same as self */
Py_INCREF
(
self
);
return
(
PyObject
*
)
self
;
}
if
(
right
<
left
)
right
=
left
;
return
PyString_FromStringAndSize
((
char
*
)
self
->
b_ptr
+
left
,
...
...
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