[Python-checkins] cpython (merge 3.5 -> default): #24789: merge with 3.5.

ezio.melotti python-checkins at python.org
Sat Jan 9 09:09:36 EST 2016


https://hg.python.org/cpython/rev/57964ca3ce0f
changeset:   99819:57964ca3ce0f
parent:      99817:60b266d7dcbd
parent:      99818:1753a28acad4
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sat Jan 09 16:09:19 2016 +0200
summary:
  #24789: merge with 3.5.

files:
  Lib/ctypes/__init__.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/ctypes/__init__.py b/Lib/ctypes/__init__.py
--- a/Lib/ctypes/__init__.py
+++ b/Lib/ctypes/__init__.py
@@ -47,7 +47,7 @@
 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:

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list