This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Alex.Leach
Recipients Alex.Leach, benjamin.peterson, docs@python, gagern, georg.brandl, pitrou, ronaldoussoren, stutzbach
Date 2013-04-20.18:32:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1366482759.49.0.330968043051.issue4934@psf.upfronthosting.co.za>
In-reply-to
Content
I've just ran into tp_version_tag, when running the boost python testsuite and wondered what it was... Since upgrading to GCC 4.8, I've started to get a lot more warnings with Python extensions, e.g.:-

boost/python/opaque_pointer_converter.hpp:122:14: warning: missing initializer for member ‘_typeobject::tp_version_tag’ [-Wmissing-field-initializers]

In this instance the testsuite was made to compile with the '-Wextra' flag. The fix was pretty simple; add another zero to the opaque_pointer_convert struct.

I have used the following preprocessor macro to test whether or not to do this. Would this be a good way to test for the addition?

#if PY_VERSION_HEX >= 0x02060000
  0,    /* tp_version_tag */
#endif

Cheers,
Alex
History
Date User Action Args
2013-04-20 18:32:39Alex.Leachsetrecipients: + Alex.Leach, georg.brandl, ronaldoussoren, gagern, pitrou, benjamin.peterson, stutzbach, docs@python
2013-04-20 18:32:39Alex.Leachsetmessageid: <1366482759.49.0.330968043051.issue4934@psf.upfronthosting.co.za>
2013-04-20 18:32:39Alex.Leachlinkissue4934 messages
2013-04-20 18:32:39Alex.Leachcreate