[Python-checkins] cpython: Credit Per Øyvind Karlsen for the initial implementation of the lzma module

nadeem.vawda python-checkins at python.org
Thu Dec 1 00:22:04 CET 2011


http://hg.python.org/cpython/rev/6cde416ef03b
changeset:   73798:6cde416ef03b
user:        Nadeem Vawda <nadeem.vawda at gmail.com>
date:        Thu Dec 01 01:18:27 2011 +0200
summary:
  Credit Per Øyvind Karlsen for the initial implementation of the lzma module (issue #6715).

files:
  Misc/ACKS             |  1 +
  Misc/NEWS             |  1 +
  Modules/_lzmamodule.c |  7 ++++++-
  3 files changed, 8 insertions(+), 1 deletions(-)


diff --git a/Misc/ACKS b/Misc/ACKS
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -502,6 +502,7 @@
 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
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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 --git a/Modules/_lzmamodule.c b/Modules/_lzmamodule.c
--- 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
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list