diff options
Diffstat (limited to 'python/apt_instmodule.cc')
| -rw-r--r-- | python/apt_instmodule.cc | 9 |
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}, + {} }; |
