Give proper credits for the memoryview implementation. (#18626)
https://github.com/python/cpython/commit/ee3bac4cba56b51ce924f13d77b97131eec... commit: ee3bac4cba56b51ce924f13d77b97131eec1a865 branch: master author: Stefan Krah <skrah@bytereef.org> committer: GitHub <noreply@github.com> date: 2020-02-24T11:15:26+01:00 summary: Give proper credits for the memoryview implementation. (#18626) files: M Objects/memoryobject.c diff --git a/Objects/memoryobject.c b/Objects/memoryobject.c index 6887c4335f1f1..7f9c90035f574 100644 --- a/Objects/memoryobject.c +++ b/Objects/memoryobject.c @@ -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"
participants (1)
-
Stefan Krah