]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Give proper credits for the memoryview implementation. (GH-18626) (#18643)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 24 Feb 2020 10:51:41 +0000 (02:51 -0800)
committerGitHub <noreply@github.com>
Mon, 24 Feb 2020 10:51:40 +0000 (11:51 +0100)
(cherry picked from commit ee3bac4cba56b51ce924f13d77b97131eec1a865)

Authored-by: Stefan Krah <skrah@bytereef.org>
Objects/memoryobject.c

index ce8fa3f270051f7e251d617f66efa715a0c647ae..61669aedc73423e46628af22c8fb9c34c03b8cab 100644 (file)
@@ -1,4 +1,14 @@
-/* Memoryview object implementation */
+/*
+ * Memoryview object implementation
+ * --------------------------------
+ *
+ *   This implementation is a complete rewrite contributed by Stefan Krah in
+ *   Python 3.3.  Substantial credit goes to Antoine Pitrou (who had already
+ *   fortified and rewritten the previous implementation) and Nick Coghlan
+ *   (who came up with the idea of the ManagedBuffer) for analyzing the complex
+ *   ownership rules.
+ *
+ */
 
 #include "Python.h"
 #include "internal/mem.h"