Skip to content

Commit 3dc6961

Browse files
Give proper credits for the memoryview implementation. (GH-18626) (#18643)
(cherry picked from commit ee3bac4) Authored-by: Stefan Krah <[email protected]>
1 parent 097612a commit 3dc6961

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Objects/memoryobject.c

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
/* Memoryview object implementation */
1+
/*
2+
* Memoryview object implementation
3+
* --------------------------------
4+
*
5+
* This implementation is a complete rewrite contributed by Stefan Krah in
6+
* Python 3.3. Substantial credit goes to Antoine Pitrou (who had already
7+
* fortified and rewritten the previous implementation) and Nick Coghlan
8+
* (who came up with the idea of the ManagedBuffer) for analyzing the complex
9+
* ownership rules.
10+
*
11+
*/
212

313
#include "Python.h"
414
#include "internal/mem.h"

0 commit comments

Comments
 (0)