summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-03-06 20:33:24 (GMT)
committerBrett Cannon <brett@python.org>2012-03-06 20:33:24 (GMT)
commitf67e494ca8dfc72c0f812ed46c6a08ad3b9ddc24 (patch)
treeceed84488164142e5884411566de19f66702c3e7 /Objects/abstract.c
parent0d4d410b2d6891520b1772a85f5ebdf926a0c77e (diff)
parent0119e4753eec50f671ee716af202b4a1ca28deef (diff)
downloadcpython-f67e494ca8dfc72c0f812ed46c6a08ad3b9ddc24.zip
cpython-f67e494ca8dfc72c0f812ed46c6a08ad3b9ddc24.tar.gz
cpython-f67e494ca8dfc72c0f812ed46c6a08ad3b9ddc24.tar.bz2
merge
Diffstat (limited to 'Objects/abstract.c')
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 62fccdc..39dffac 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -649,7 +649,7 @@ PyBuffer_FillContiguousStrides(int nd, Py_ssize_t *shape,
int
PyBuffer_FillInfo(Py_buffer *view, PyObject *obj, void *buf, Py_ssize_t len,
- int readonly, int flags)
+ int readonly, int flags)
{
if (view == NULL) return 0; /* XXX why not -1? */
if (((flags & PyBUF_WRITABLE) == PyBUF_WRITABLE) &&