summaryrefslogtreecommitdiff
path: root/python/apt_instmodule.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-11-24 10:00:21 +0000
committerArch Librarian <arch@canonical.com>2004-11-24 10:00:21 +0000
commit051ebe1ac22fdbf427abc4fd9ee5cc8279649b07 (patch)
tree30e49d1a91b67fee9992b236b962e5347ce4c62a /python/apt_instmodule.cc
parent043b67f398897f7689006162b7702974c1fabb8a (diff)
downloadpython-apt-051ebe1ac22fdbf427abc4fd9ee5cc8279649b07.tar.gz
Tar examining support
Author: jgg Date: 2001-09-30 03:52:58 GMT Tar examining support
Diffstat (limited to 'python/apt_instmodule.cc')
-rw-r--r--python/apt_instmodule.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/python/apt_instmodule.cc b/python/apt_instmodule.cc
index 519d4730..2eea4e77 100644
--- a/python/apt_instmodule.cc
+++ b/python/apt_instmodule.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt_instmodule.cc,v 1.1 2001/02/20 06:32:01 jgg Exp $
+// $Id: apt_instmodule.cc,v 1.2 2001/09/30 03:52:58 jgg Exp $
/* ######################################################################
apt_intmodule - Top level for the python module. Create the internal
@@ -12,11 +12,12 @@
##################################################################### */
/*}}}*/
// Include Files /*{{{*/
+#include "apt_instmodule.h"
#include "generic.h"
#include <apt-pkg/debfile.h>
#include <apt-pkg/error.h>
-
+
#include <sys/stat.h>
#include <unistd.h>
#include <python/Python.h>
@@ -72,7 +73,9 @@ static PyMethodDef methods[] =
{
// Stuff
{"debExtractControl",debExtractControl,METH_VARARGS,doc_debExtractControl},
-
+ {"tarExtract",tarExtract,METH_VARARGS,doc_tarExtract},
+ {"debExtract",debExtract,METH_VARARGS,doc_debExtract},
+
{}
};