summaryrefslogtreecommitdiffstats
path: root/Modules/_io/_iomodule.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-06 18:48:21 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-06 18:48:21 (GMT)
commit972ee13e037432497fa003d4a786b2342a38db94 (patch)
treeab6585ebe7d0da0e725da7bd6f61a4cf739192f2 /Modules/_io/_iomodule.c
parent6285774f06f44f04353801cc79fd2a5e67f884ec (diff)
downloadcpython-972ee13e037432497fa003d4a786b2342a38db94.zip
cpython-972ee13e037432497fa003d4a786b2342a38db94.tar.gz
cpython-972ee13e037432497fa003d4a786b2342a38db94.tar.bz2
Issue #5506: BytesIO objects now have a getbuffer() method exporting a
view of their contents without duplicating them. The view is both readable and writable.
Diffstat (limited to 'Modules/_io/_iomodule.c')
-rw-r--r--Modules/_io/_iomodule.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/_io/_iomodule.c b/Modules/_io/_iomodule.c
index 733a7b9..c0c8154 100644
--- a/Modules/_io/_iomodule.c
+++ b/Modules/_io/_iomodule.c
@@ -710,6 +710,8 @@ PyInit__io(void)
/* BytesIO */
PyBytesIO_Type.tp_base = &PyBufferedIOBase_Type;
ADD_TYPE(&PyBytesIO_Type, "BytesIO");
+ if (PyType_Ready(&_PyBytesIOBuffer_Type) < 0)
+ goto fail;
/* StringIO */
PyStringIO_Type.tp_base = &PyTextIOBase_Type;