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
87618554
Kaydet (Commit)
87618554
authored
Şub 08, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove memoryview.__str__ #5182
üst
f1ffeb59
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
17 deletions
+3
-17
NEWS
Misc/NEWS
+2
-0
memoryobject.c
Objects/memoryobject.c
+1
-17
No files found.
Misc/NEWS
Dosyayı görüntüle @
87618554
...
...
@@ -12,6 +12,8 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
- Issue #5182: Removed memoryview.__str__.
- Issue #1717: Removed builtin cmp() function, dropped tp_compare
slot, the C API functions PyObject_Compare and PyUnicode_Compare and
the type definition cmpfunc. The tp_compare slot has been renamed
...
...
Objects/memoryobject.c
Dosyayı görüntüle @
87618554
...
...
@@ -498,22 +498,6 @@ memory_repr(PyMemoryViewObject *self)
return
PyUnicode_FromFormat
(
"<memory at %p>"
,
self
);
}
static
PyObject
*
memory_str
(
PyMemoryViewObject
*
self
)
{
Py_buffer
view
;
PyObject
*
res
;
if
(
PyObject_GetBuffer
((
PyObject
*
)
self
,
&
view
,
PyBUF_FULL
)
<
0
)
return
NULL
;
res
=
PyBytes_FromStringAndSize
(
NULL
,
view
.
len
);
PyBuffer_ToContiguous
(
PyBytes_AS_STRING
(
res
),
&
view
,
view
.
len
,
'C'
);
PyBuffer_Release
(
&
view
);
return
res
;
}
/* Sequence methods */
static
Py_ssize_t
memory_length
(
PyMemoryViewObject
*
self
)
...
...
@@ -812,7 +796,7 @@ PyTypeObject PyMemoryView_Type = {
&
memory_as_mapping
,
/* tp_as_mapping */
0
,
/* tp_hash */
0
,
/* tp_call */
(
reprfunc
)
memory_str
,
/* tp_str */
0
,
/* tp_str */
PyObject_GenericGetAttr
,
/* tp_getattro */
0
,
/* tp_setattro */
&
memory_as_buffer
,
/* tp_as_buffer */
...
...
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