[Python-checkins] cpython (3.5): Issue #29111: Fix memoryview signature.

stefan.krah python-checkins at python.org
Fri Dec 30 06:26:32 EST 2016


https://hg.python.org/cpython/rev/1e1e24629218
changeset:   105900:1e1e24629218
branch:      3.5
parent:      105891:f4b747f59804
user:        Stefan Krah <skrah at bytereef.org>
date:        Fri Dec 30 12:23:35 2016 +0100
summary:
  Issue #29111: Fix memoryview signature.

files:
  Objects/memoryobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/memoryobject.c b/Objects/memoryobject.c
--- a/Objects/memoryobject.c
+++ b/Objects/memoryobject.c
@@ -221,7 +221,7 @@
 
 
 PyDoc_STRVAR(memory_doc,
-"memoryview($module, object)\n--\n\
+"memoryview(object)\n--\n\
 \n\
 Create a new memoryview object which references the given object.");
 

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


More information about the Python-checkins mailing list