summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2006-06-06 18:08:16 (GMT)
committerBrett Cannon <bcannon@gmail.com>2006-06-06 18:08:16 (GMT)
commitea229bd1ed3456263e31e4d979c8fa7708ff7ef1 (patch)
tree0ffab349a717b197e51917a40ae7a465ae871a20 /Objects
parent12ca69bc0e42e799db52cfd0030c8b1d18049bef (diff)
downloadcpython-ea229bd1ed3456263e31e4d979c8fa7708ff7ef1.zip
cpython-ea229bd1ed3456263e31e4d979c8fa7708ff7ef1.tar.gz
cpython-ea229bd1ed3456263e31e4d979c8fa7708ff7ef1.tar.bz2
Fix coding style guide bug.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/abstract.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index f7d6f5a..83c48c2 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -216,7 +216,8 @@ PyObject_DelItemString(PyObject *o, char *key)
return ret;
}
-int PyObject_AsCharBuffer(PyObject *obj,
+int
+PyObject_AsCharBuffer(PyObject *obj,
const char **buffer,
Py_ssize_t *buffer_len)
{