summaryrefslogtreecommitdiffstats
path: root/Modules/_lzmamodule.c
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2011-11-30 23:18:27 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2011-11-30 23:18:27 (GMT)
commit59bb0e077fa8f6942bdb0ca44ac462a58379d375 (patch)
treeab5b53ebde830a0cdb19c875f6bdf2626e6559cc /Modules/_lzmamodule.c
parent97ba26bf7211d9734b244090b453ac905a8788ff (diff)
downloadcpython-59bb0e077fa8f6942bdb0ca44ac462a58379d375.zip
cpython-59bb0e077fa8f6942bdb0ca44ac462a58379d375.tar.gz
cpython-59bb0e077fa8f6942bdb0ca44ac462a58379d375.tar.bz2
Credit Per Øyvind Karlsen for the initial implementation of the lzma module (issue #6715).
Diffstat (limited to 'Modules/_lzmamodule.c')
-rw-r--r--Modules/_lzmamodule.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/Modules/_lzmamodule.c b/Modules/_lzmamodule.c
index 7371517..a69377c 100644
--- 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