diff options
| author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-12-22 14:49:03 +0100 |
|---|---|---|
| committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-12-22 14:49:03 +0100 |
| commit | 639ebf76098f56ce33d9b774acc11f4a8e60be3d (patch) | |
| tree | e73a8057641776a2ae3bc1ac917991137c8b26c7 /src/report-python | |
| parent | df1b1d501106687fcf0039dc9771c4455c346df5 (diff) | |
| download | abrt-639ebf76098f56ce33d9b774acc11f4a8e60be3d.tar.gz abrt-639ebf76098f56ce33d9b774acc11f4a8e60be3d.tar.xz abrt-639ebf76098f56ce33d9b774acc11f4a8e60be3d.zip | |
src/report-python: expose CD_FLAG_foo constants to Python wrapper
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/report-python')
| -rw-r--r-- | src/report-python/reportmodule.c | 10 | ||||
| -rwxr-xr-x | src/report-python/test_full | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/src/report-python/reportmodule.c b/src/report-python/reportmodule.c index 13184cc0..6dda73cf 100644 --- a/src/report-python/reportmodule.c +++ b/src/report-python/reportmodule.c @@ -19,6 +19,9 @@ #include <Python.h> #include "common.h" +#include "crash_data.h" +#include "dump_dir.h" + PyObject *ReportError; static PyMethodDef module_methods[] = { @@ -67,9 +70,16 @@ init_pyreport(void) /* init type objects */ Py_INCREF(&p_crash_data_type); PyModule_AddObject(m, "crash_data", (PyObject *)&p_crash_data_type); + PyModule_AddObject(m, "CD_FLAG_SYS" , Py_BuildValue("i", CD_FLAG_SYS )); + PyModule_AddObject(m, "CD_FLAG_BIN" , Py_BuildValue("i", CD_FLAG_BIN )); + PyModule_AddObject(m, "CD_FLAG_TXT" , Py_BuildValue("i", CD_FLAG_TXT )); + PyModule_AddObject(m, "CD_FLAG_ISEDITABLE" , Py_BuildValue("i", CD_FLAG_ISEDITABLE )); + PyModule_AddObject(m, "CD_FLAG_ISNOTEDITABLE", Py_BuildValue("i", CD_FLAG_ISNOTEDITABLE)); Py_INCREF(&p_dump_dir_type); PyModule_AddObject(m, "dump_dir", (PyObject *)&p_dump_dir_type); + PyModule_AddObject(m, "DD_FAIL_QUIETLY" , Py_BuildValue("i", DD_FAIL_QUIETLY )); + PyModule_AddObject(m, "DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE", Py_BuildValue("i", DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE)); Py_INCREF(&p_run_event_state_type); PyModule_AddObject(m, "run_event_state", (PyObject *)&p_run_event_state_type); diff --git a/src/report-python/test_full b/src/report-python/test_full index a9f32034..05020f05 100755 --- a/src/report-python/test_full +++ b/src/report-python/test_full @@ -22,6 +22,6 @@ def log_function(line): cd = crash_data() cd.add("foo", "bar") -cd.add("analyzer", "baz") +cd.add("analyzer", "baz", CD_FLAG_ISNOTEDITABLE) r = run_event_on_crash_data(cd, "post-create", log_function) print "Result:", r |
