We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5634e6 + ee3bac4 commit 7b90f65Copy full SHA for 7b90f65
Objects/memoryobject.c
@@ -1,4 +1,14 @@
1
-/* Memoryview object implementation */
+/*
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
+ */
12
13
#include "Python.h"
14
#include "pycore_object.h"
0 commit comments