diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/apt_instmodule.cc | 4 | ||||
| -rw-r--r-- | python/apt_instmodule.h | 4 | ||||
| -rw-r--r-- | python/apt_pkgmodule.cc | 4 | ||||
| -rw-r--r-- | python/apt_pkgmodule.h | 4 | ||||
| -rw-r--r-- | python/cache.cc | 4 | ||||
| -rw-r--r-- | python/configuration.cc | 4 | ||||
| -rw-r--r-- | python/generic.h | 4 | ||||
| -rw-r--r-- | python/pkgrecords.cc | 4 | ||||
| -rw-r--r-- | python/string.cc | 4 | ||||
| -rw-r--r-- | python/tag.cc | 4 | ||||
| -rw-r--r-- | python/tar.cc | 4 |
11 files changed, 22 insertions, 22 deletions
diff --git a/python/apt_instmodule.cc b/python/apt_instmodule.cc index 2eea4e77..96bd029b 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.2 2001/09/30 03:52:58 jgg Exp $ +// $Id: apt_instmodule.cc,v 1.3 2002/01/08 06:53:04 jgg Exp $ /* ###################################################################### apt_intmodule - Top level for the python module. Create the internal @@ -20,7 +20,7 @@ #include <sys/stat.h> #include <unistd.h> -#include <python/Python.h> +#include <Python.h> /*}}}*/ // debExtractControl - Exctract an arbitary control member /*{{{*/ diff --git a/python/apt_instmodule.h b/python/apt_instmodule.h index 478b9e2b..c8d09736 100644 --- a/python/apt_instmodule.h +++ b/python/apt_instmodule.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt_instmodule.h,v 1.1 2001/09/30 03:52:58 jgg Exp $ +// $Id: apt_instmodule.h,v 1.2 2002/01/08 06:53:04 jgg Exp $ /* ###################################################################### Prototypes for the module @@ -10,7 +10,7 @@ #ifndef APT_INSTMODULE_H #define APT_INSTMODULE_H -#include <python/Python.h> +#include <Python.h> PyObject *debExtract(PyObject *Self,PyObject *Args); extern char *doc_debExtract; diff --git a/python/apt_pkgmodule.cc b/python/apt_pkgmodule.cc index 27ca20db..6c2a61e1 100644 --- a/python/apt_pkgmodule.cc +++ b/python/apt_pkgmodule.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt_pkgmodule.cc,v 1.3 2001/04/06 05:30:09 jgg Exp $ +// $Id: apt_pkgmodule.cc,v 1.4 2002/01/08 06:53:04 jgg Exp $ /* ###################################################################### apt_pkgmodule - Top level for the python module. Create the internal @@ -24,7 +24,7 @@ #include <sys/stat.h> #include <unistd.h> -#include <python/Python.h> +#include <Python.h> /*}}}*/ // newConfiguration - Build a new configuration class /*{{{*/ diff --git a/python/apt_pkgmodule.h b/python/apt_pkgmodule.h index 54eb1ec0..bc3e286c 100644 --- a/python/apt_pkgmodule.h +++ b/python/apt_pkgmodule.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt_pkgmodule.h,v 1.2 2001/02/23 05:46:02 jgg Exp $ +// $Id: apt_pkgmodule.h,v 1.3 2002/01/08 06:53:04 jgg Exp $ /* ###################################################################### Prototypes for the module @@ -10,7 +10,7 @@ #ifndef APT_PKGMODULE_H #define APT_PKGMODULE_H -#include <python/Python.h> +#include <Python.h> // Configuration Stuff #define Configuration_Check(op) ((op)->ob_type == &ConfigurationType || \ diff --git a/python/cache.cc b/python/cache.cc index 794b4f57..3bf6cba9 100644 --- a/python/cache.cc +++ b/python/cache.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: cache.cc,v 1.1 2001/02/20 06:32:01 jgg Exp $ +// $Id: cache.cc,v 1.2 2002/01/08 06:53:04 jgg Exp $ /* ###################################################################### Cache - Wrapper for the cache related functions @@ -15,7 +15,7 @@ #include <apt-pkg/cachefile.h> #include <apt-pkg/sptr.h> -#include <python/Python.h> +#include <Python.h> /*}}}*/ struct PkgListStruct diff --git a/python/configuration.cc b/python/configuration.cc index 9667f190..a66f8b12 100644 --- a/python/configuration.cc +++ b/python/configuration.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: configuration.cc,v 1.1 2001/02/20 06:32:01 jgg Exp $ +// $Id: configuration.cc,v 1.2 2002/01/08 06:53:04 jgg Exp $ /* ###################################################################### Configuration - Binding for the configuration object. @@ -23,7 +23,7 @@ #include <apt-pkg/configuration.h> #include <apt-pkg/cmndline.h> -#include <python/Python.h> +#include <Python.h> /*}}}*/ static PyMethodDef CnfMethods[]; diff --git a/python/generic.h b/python/generic.h index 3cbe374b..4e51fd9e 100644 --- a/python/generic.h +++ b/python/generic.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: generic.h,v 1.1 2001/02/20 06:32:01 jgg Exp $ +// $Id: generic.h,v 1.2 2002/01/08 06:53:04 jgg Exp $ /* ###################################################################### generic - Some handy functions to make integration a tad simpler @@ -27,7 +27,7 @@ #ifndef GENERIC_H #define GENERIC_H -#include <python/Python.h> +#include <Python.h> #include <string> template <class T> struct CppPyObject : public PyObject diff --git a/python/pkgrecords.cc b/python/pkgrecords.cc index 3128365a..4bc05278 100644 --- a/python/pkgrecords.cc +++ b/python/pkgrecords.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: pkgrecords.cc,v 1.1 2001/02/20 06:32:01 jgg Exp $ +// $Id: pkgrecords.cc,v 1.2 2002/01/08 06:53:04 jgg Exp $ /* ###################################################################### Package Records - Wrapper for the package records functions @@ -13,7 +13,7 @@ #include <apt-pkg/pkgrecords.h> -#include <python/Python.h> +#include <Python.h> /*}}}*/ struct PkgRecordsStruct diff --git a/python/string.cc b/python/string.cc index 5ad7fddb..16adc8cd 100644 --- a/python/string.cc +++ b/python/string.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: string.cc,v 1.2 2001/02/23 05:46:02 jgg Exp $ +// $Id: string.cc,v 1.3 2002/01/08 06:53:04 jgg Exp $ /* ###################################################################### string - Mappings for the string functions that are worthwile for @@ -14,7 +14,7 @@ #include <apt-pkg/strutl.h> -#include <python/Python.h> +#include <Python.h> /*}}}*/ // Templated function /*{{{*/ diff --git a/python/tag.cc b/python/tag.cc index da151832..682aa0a1 100644 --- a/python/tag.cc +++ b/python/tag.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: tag.cc,v 1.1 2001/02/20 06:32:01 jgg Exp $ +// $Id: tag.cc,v 1.2 2002/01/08 06:53:04 jgg Exp $ /* ###################################################################### Tag - Binding for the RFC 822 tag file parser @@ -26,7 +26,7 @@ #include <apt-pkg/tagfile.h> #include <stdio.h> -#include <python/Python.h> +#include <Python.h> /*}}}*/ static PyMethodDef TagSecMethods[]; static PyMethodDef TagFileMethods[]; diff --git a/python/tar.cc b/python/tar.cc index 09f6b680..40350d2c 100644 --- a/python/tar.cc +++ b/python/tar.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: tar.cc,v 1.1 2001/09/30 03:52:58 jgg Exp $ +// $Id: tar.cc,v 1.2 2002/01/08 06:53:04 jgg Exp $ /* ###################################################################### Tar Inteface @@ -15,7 +15,7 @@ #include <apt-pkg/debfile.h> #include "apt_instmodule.h" -#include <python/Python.h> +#include <Python.h> /*}}}*/ class ProcessTar : public pkgDirStream |
