summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2016-01-09 14:09:19 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2016-01-09 14:09:19 (GMT)
commitef7851b89193f9c18ee0e0624435a7fd9ace121f (patch)
tree57487af5a2888639fb6bd1659ea6cc5846a03e59 /Lib
parent3acf1708690b9b8c7bb41337498b11eff0166c92 (diff)
parentee2a392e6a06d4334b6fb3b5a80e99471dace8a6 (diff)
downloadcpython-ef7851b89193f9c18ee0e0624435a7fd9ace121f.zip
cpython-ef7851b89193f9c18ee0e0624435a7fd9ace121f.tar.gz
cpython-ef7851b89193f9c18ee0e0624435a7fd9ace121f.tar.bz2
#24789: merge with 3.5.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/ctypes/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/__init__.py b/Lib/ctypes/__init__.py
index 4cb6d0d..dc7458a 100644
--- a/Lib/ctypes/__init__.py
+++ b/Lib/ctypes/__init__.py
@@ -47,7 +47,7 @@ from _ctypes import FUNCFLAG_CDECL as _FUNCFLAG_CDECL, \
def create_string_buffer(init, size=None):
"""create_string_buffer(aBytes) -> character array
create_string_buffer(anInteger) -> character array
- create_string_buffer(aString, anInteger) -> character array
+ create_string_buffer(aBytes, anInteger) -> character array
"""
if isinstance(init, bytes):
if size is None: