]> git.pld-linux.org Git - packages/gnome-abrt.git/blame - gnome-abrt-python.patch
- rel 3; fix python 3.5 build
[packages/gnome-abrt.git] / gnome-abrt-python.patch
CommitLineData
da95b34b
AM
1--- gnome-abrt-1.2.0/src/gnome_abrt/wrappers/module.c~ 2015-06-03 05:36:53.000000000 +0200
2+++ gnome-abrt-1.2.0/src/gnome_abrt/wrappers/module.c 2015-09-18 09:37:15.949588371 +0200
3@@ -41,7 +41,11 @@
4 .m_doc = module_doc,
5 .m_size = -1,
6 .m_methods = module_methods,
7+#if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 5
8+ .m_slots = NULL,
9+#else
10 .m_reload = NULL,
11+#endif
12 .m_traverse = NULL,
13 .m_clear = NULL,
14 .m_free = NULL,
This page took 0.035314 seconds and 4 git commands to generate.