blob: 173e3c289af71ccb03f3a7d14dbb205b71e6ab1d (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _PYTHONHEADERWRAPPER_H_
#define _PYTHONHEADERWRAPPER_H_
// As of Python 3, something inside <Python.h> defines a struct with a member
// called "slots" which conflicts with the builtin Qt keyword. But since we
// include stuff from KVIrc itself back into the python module, we can't just
// use QT_NO_KEYWORDS.
#undef slots
#include <Python.h>
#endif
|