Give proper credits for the memoryview implementation. (GH-18626) (#18642)

(cherry picked from commit ee3bac4cba)

Authored-by: Stefan Krah <skrah@bytereef.org>
This commit is contained in:
Miss Islington (bot) 2020-02-24 02:52:10 -08:00 committed by GitHub
parent c97fc564a6
commit aa8213486f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View 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"