Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 59bb0e0

Browse files
committed
Credit Per Øyvind Karlsen for the initial implementation of the lzma module (issue #6715).
1 parent 97ba26b commit 59bb0e0

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,7 @@ Jan Kaliszewski
502502
Peter van Kampen
503503
Rafe Kaplan
504504
Jacob Kaplan-Moss
505+
Per Øyvind Karlsen
505506
Lou Kates
506507
Hiroaki Kawai
507508
Sebastien Keim

Misc/NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,7 @@ Library
400400
-------
401401

402402
- Issue #6715: Add a module 'lzma' for compression using the LZMA algorithm.
403+
Thanks to Per Øyvind Karlsen for the initial implementation.
403404

404405
- Issue #13487: Make inspect.getmodule robust against changes done to
405406
sys.modules while it is iterating over it.

Modules/_lzmamodule.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
/* _lzma - Low-level Python interface to liblzma. */
1+
/* _lzma - Low-level Python interface to liblzma.
2+
3+
Initial implementation by Per Øyvind Karlsen.
4+
Rewritten by Nadeem Vawda.
5+
6+
*/
27

38
#define PY_SSIZE_T_CLEAN
49

0 commit comments

Comments
 (0)