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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#ifndef __PYGI_UTIL_H__
#define __PYGI_UTIL_H__
#include <Python.h>
#include <glib.h>
#include "pygobject-internal.h"
#include "pygi-python-compat.h"
G_BEGIN_DECLS
PyObject * pyg_integer_richcompare(PyObject *v, PyObject *w, int op);
PyObject * pyg_ptr_richcompare(void* a, void *b, int op);
const gchar * pyg_constant_strip_prefix(const gchar *name, const gchar *strip_prefix);
PyObject * pygi_import_module (const char *name);
PyObject * pygi_pyerr_format (PyObject *exception, const char *format, ...);
gboolean pygi_guint_from_pyssize (Py_ssize_t pyval, guint *result);
#if PY_VERSION_HEX >= 0x03000000
#define _PyGI_ERROR_PREFIX(format, ...) G_STMT_START { \
PyObject *py_error_prefix; \
py_error_prefix = PyUnicode_FromFormat(format, ## __VA_ARGS__); \
if (py_error_prefix != NULL) { \
PyObject *py_error_type, *py_error_value, *py_error_traceback; \
PyErr_Fetch(&py_error_type, &py_error_value, &py_error_traceback); \
if (PyUnicode_Check(py_error_value)) { \
PyObject *new; \
new = PyUnicode_Concat(py_error_prefix, py_error_value); \
Py_DECREF(py_error_value); \
if (new != NULL) { \
py_error_value = new; \
} \
} \
PyErr_Restore(py_error_type, py_error_value, py_error_traceback); \
Py_DECREF(py_error_prefix); \
} \
} G_STMT_END
#else
#define _PyGI_ERROR_PREFIX(format, ...) G_STMT_START { \
PyObject *py_error_prefix; \
py_error_prefix = PyString_FromFormat(format, ## __VA_ARGS__); \
if (py_error_prefix != NULL) { \
PyObject *py_error_type, *py_error_value, *py_error_traceback; \
PyErr_Fetch(&py_error_type, &py_error_value, &py_error_traceback); \
if (PyString_Check(py_error_value)) { \
PyString_ConcatAndDel(&py_error_prefix, py_error_value); \
if (py_error_prefix != NULL) { \
py_error_value = py_error_prefix; \
} \
} \
PyErr_Restore(py_error_type, py_error_value, py_error_traceback); \
} \
} G_STMT_END
#endif
G_END_DECLS
#endif /* __PYGI_UTIL_H__ */
|