summaryrefslogtreecommitdiff
path: root/python/indexrecords.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-06-25 18:53:47 +0200
committerJulian Andres Klode <jak@debian.org>2009-06-25 18:53:47 +0200
commite80500e7173387acc7a6b6be9d7424a4343ec036 (patch)
treed6bb50acbf46708cde2f22cb173bcf998bc9a921 /python/indexrecords.cc
parenta4e69e11e544844034c3fbdc6789d5573f802117 (diff)
downloadpython-apt-e80500e7173387acc7a6b6be9d7424a4343ec036.tar.gz
python: Use PyVarObject_HEAD_INIT() instead of PyObject_HEAD_INIT().
This is related to PEP 3123 and fixes some compiler warnings.
Diffstat (limited to 'python/indexrecords.cc')
-rw-r--r--python/indexrecords.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/python/indexrecords.cc b/python/indexrecords.cc
index fcb2b85d..588cf883 100644
--- a/python/indexrecords.cc
+++ b/python/indexrecords.cc
@@ -81,10 +81,7 @@ static PyMethodDef IndexRecords_Methods[] = {
static char *IndexRecords_doc = "IndexRecords()\n\n"
"Representation of a release file.";
PyTypeObject PyIndexRecords_Type = {
- PyObject_HEAD_INIT(&PyType_Type)
-#if PY_MAJOR_VERSION < 3
- 0, // ob_size
-#endif
+ PyVarObject_HEAD_INIT(&PyType_Type, 0)
"apt_pkg.IndexRecords", // tp_name
sizeof(CppPyObject<indexRecords*>), // tp_basicsize
0, // tp_itemsize