diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-04-14 20:27:49 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-04-14 20:27:49 +0200 |
| commit | 444b2afea3b58cc55fbf4b9deb6d20c4475c8fef (patch) | |
| tree | 4ab1619d4069ed10ec645c8dbb627132d56d63ff /python/apt_pkgmodule.cc | |
| parent | 87df0bb1e114d2bf0972b899ac6cfd25dd032dab (diff) | |
| download | python-apt-444b2afea3b58cc55fbf4b9deb6d20c4475c8fef.tar.gz | |
* python/pkgmanager.cc: Use tp_methods and tp_getset for PkgManagerType
Diffstat (limited to 'python/apt_pkgmodule.cc')
| -rw-r--r-- | python/apt_pkgmodule.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/apt_pkgmodule.cc b/python/apt_pkgmodule.cc index aa01cc2a..4e718ffa 100644 --- a/python/apt_pkgmodule.cc +++ b/python/apt_pkgmodule.cc @@ -487,6 +487,7 @@ extern "C" void initapt_pkg() if (PyType_Ready(&PkgDepCacheType) == -1) return; if (PyType_Ready(&PkgAcquireType) == -1) return; if (PyType_Ready(&PackageIndexFileType) == -1) return; + if (PyType_Ready(&PkgManagerType) == -1) return; // Initialize the module |
