1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/*
SPDX-FileCopyrightText: 2012 Sven Brauch <svenbrauch@googlemail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
// avoid compiler warnings... urgh
#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE
// remove interfering qt macro
#undef slots
#include <language/duchain/duchainlock.h>
#include "Python.h"
#include "ast.h"
#include "unicodeobject.h"
#include "object.h"
// remove evil macros from headers which pollute the namespace (grr!)
#undef test
#undef decorators
#undef Attribute
|