From 59bb0e077fa8f6942bdb0ca44ac462a58379d375 Mon Sep 17 00:00:00 2001 From: Nadeem Vawda Date: Thu, 1 Dec 2011 01:18:27 +0200 Subject: =?UTF-8?q?Credit=20Per=20=C3=98yvind=20Karlsen=20for=20the=20init?= =?UTF-8?q?ial=20implementation=20of=20the=20lzma=20module=20(issue=20#671?= =?UTF-8?q?5).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Misc/ACKS | 1 + Misc/NEWS | 1 + Modules/_lzmamodule.c | 7 ++++++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Misc/ACKS b/Misc/ACKS index 70a42e2..37835af 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -502,6 +502,7 @@ Jan Kaliszewski Peter van Kampen Rafe Kaplan Jacob Kaplan-Moss +Per Øyvind Karlsen Lou Kates Hiroaki Kawai Sebastien Keim diff --git a/Misc/NEWS b/Misc/NEWS index f01b7e2..c6f46a8 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -400,6 +400,7 @@ Library ------- - Issue #6715: Add a module 'lzma' for compression using the LZMA algorithm. + Thanks to Per Øyvind Karlsen for the initial implementation. - Issue #13487: Make inspect.getmodule robust against changes done to sys.modules while it is iterating over it. diff --git a/Modules/_lzmamodule.c b/Modules/_lzmamodule.c index 7371517..a69377c 100644 --- a/Modules/_lzmamodule.c +++ b/Modules/_lzmamodule.c @@ -1,4 +1,9 @@ -/* _lzma - Low-level Python interface to liblzma. */ +/* _lzma - Low-level Python interface to liblzma. + + Initial implementation by Per Øyvind Karlsen. + Rewritten by Nadeem Vawda. + +*/ #define PY_SSIZE_T_CLEAN -- cgit v0.12