(original) (raw)
changeset: 73798:6cde416ef03b user: Nadeem Vawda nadeem.vawda@gmail.com date: Thu Dec 01 01🔞27 2011 +0200 files: Misc/ACKS Misc/NEWS Modules/_lzmamodule.c description: Credit Per Øyvind Karlsen for the initial implementation of the lzma module (issue #6715). diff -r 528abe272856 -r 6cde416ef03b Misc/ACKS --- a/Misc/ACKS Wed Nov 30 21:20:01 2011 +0100 +++ b/Misc/ACKS Thu Dec 01 01🔞27 2011 +0200 @@ -502,6 +502,7 @@ Peter van Kampen Rafe Kaplan Jacob Kaplan-Moss +Per Øyvind Karlsen Lou Kates Hiroaki Kawai Sebastien Keim diff -r 528abe272856 -r 6cde416ef03b Misc/NEWS --- a/Misc/NEWS Wed Nov 30 21:20:01 2011 +0100 +++ b/Misc/NEWS Thu Dec 01 01🔞27 2011 +0200 @@ -400,6 +400,7 @@ ------- - 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 -r 528abe272856 -r 6cde416ef03b Modules/_lzmamodule.c --- a/Modules/_lzmamodule.c Wed Nov 30 21:20:01 2011 +0100 +++ b/Modules/_lzmamodule.c Thu Dec 01 01🔞27 2011 +0200 @@ -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 /nadeem.vawda@gmail.com