Commit 59bb0e07 authored by Nadeem Vawda's avatar Nadeem Vawda

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

parent 97ba26bf
...@@ -502,6 +502,7 @@ Jan Kaliszewski ...@@ -502,6 +502,7 @@ Jan Kaliszewski
Peter van Kampen Peter van Kampen
Rafe Kaplan Rafe Kaplan
Jacob Kaplan-Moss Jacob Kaplan-Moss
Per Øyvind Karlsen
Lou Kates Lou Kates
Hiroaki Kawai Hiroaki Kawai
Sebastien Keim Sebastien Keim
......
...@@ -400,6 +400,7 @@ Library ...@@ -400,6 +400,7 @@ Library
------- -------
- Issue #6715: Add a module 'lzma' for compression using the LZMA algorithm. - 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 - Issue #13487: Make inspect.getmodule robust against changes done to
sys.modules while it is iterating over it. sys.modules while it is iterating over it.
......
/* _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 #define PY_SSIZE_T_CLEAN
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment