Skip to content

Commit

Permalink
Give proper credits for the memoryview implementation. (python#18626)
Browse files Browse the repository at this point in the history
  • Loading branch information
skrah authored Feb 24, 2020
1 parent c3fa634 commit ee3bac4
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Objects/memoryobject.c
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit ee3bac4

Please sign in to comment.