summaryrefslogtreecommitdiff
path: root/c/ffi_obj.c
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2016-06-03 14:12:15 +0200
committerArmin Rigo <arigo@tunes.org>2016-06-03 14:12:15 +0200
commit3d35c7a67d331b6d485614f59a8afb040b92dc96 (patch)
tree41905b8dd34fe060353f4e3a26120489927a8355 /c/ffi_obj.c
parent6af80f7e63b0ce92b5b8945695cf11447a2a0bf5 (diff)
downloadcffi-3d35c7a67d331b6d485614f59a8afb040b92dc96.tar.gz
Fix docstrings
Diffstat (limited to 'c/ffi_obj.c')
-rw-r--r--c/ffi_obj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/ffi_obj.c b/c/ffi_obj.c
index cda6824..aad59fc 100644
--- a/c/ffi_obj.c
+++ b/c/ffi_obj.c
@@ -707,7 +707,7 @@ PyDoc_STRVAR(ffi_from_handle_doc,
PyDoc_STRVAR(ffi_from_buffer_doc,
"Return a <cdata 'char[]'> that points to the data of the given Python\n"
"object, which must support the buffer interface. Note that this is\n"
-"not meant to be used on the built-in types str, unicode, or bytearray\n"
+"not meant to be used on the built-in types str or unicode\n"
"(you can build 'char[]' arrays explicitly) but only on objects\n"
"containing large quantities of raw data in some other format, like\n"
"'array.array' or numpy arrays.");