]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Give proper credits for the memoryview implementation. (#18626)
authorStefan Krah <skrah@bytereef.org>
Mon, 24 Feb 2020 10:15:26 +0000 (11:15 +0100)
committerGitHub <noreply@github.com>
Mon, 24 Feb 2020 10:15:26 +0000 (11:15 +0100)
Objects/memoryobject.c

index 6887c4335f1f18b7a32f06b716b531600b1fb07e..7f9c90035f57424cc54713dc31fd98c8942e2181 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 "pycore_object.h"