summaryrefslogtreecommitdiff
path: root/Include/memoryobject.h
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-11-04 20:30:33 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2010-11-04 20:30:33 +0000
commit7c82d310795de34099fc01abba0392a06d32f9f4 (patch)
tree5ad4c6c10ffb9050efa1949e7454f8effb11ed59 /Include/memoryobject.h
parent9600da581443b2bf0ef8277ec3f5000554b855ce (diff)
downloadcpython-7c82d310795de34099fc01abba0392a06d32f9f4.tar.gz
Issue #10293: Remove obsolete field in the PyMemoryView structure,
unused undocumented value PyBUF_SHADOW, and strangely-looking code in PyMemoryView_GetContiguous.
Diffstat (limited to 'Include/memoryobject.h')
-rw-r--r--Include/memoryobject.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/memoryobject.h b/Include/memoryobject.h
index bf0b621ab9..5bbfb05ab5 100644
--- a/Include/memoryobject.h
+++ b/Include/memoryobject.h
@@ -63,7 +63,6 @@ PyAPI_FUNC(PyObject *) PyMemoryView_FromBuffer(Py_buffer *info);
and functions instead! */
typedef struct {
PyObject_HEAD
- PyObject *base;
Py_buffer view;
} PyMemoryViewObject;