Credit Per Øyvind Karlsen for the initial implementation of the lzma module (issue #6715).

This commit is contained in:
Nadeem Vawda 2011-12-01 01:18:27 +02:00
parent 97ba26bf72
commit 59bb0e077f
3 changed files with 8 additions and 1 deletions

View File

@ -502,6 +502,7 @@ Jan Kaliszewski
Peter van Kampen
Rafe Kaplan
Jacob Kaplan-Moss
Per Øyvind Karlsen
Lou Kates
Hiroaki Kawai
Sebastien Keim

View File

@ -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.

View File

@ -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