diff options
author | sibel <lesibel@free.fr> | 2011-01-02 11:54:14 +0100 |
---|---|---|
committer | sibel <lesibel@free.fr> | 2011-01-02 11:54:14 +0100 |
commit | 6dc94643ed8b69ee79ccb06bad18b4547faee483 (patch) | |
tree | 9c620b647e033bfeab242c277c923250fbea30b2 /extra/pygtk/python27.patch | |
parent | 2d2e7355f177ee4f5e336d362dd8f4f8ad4c5109 (diff) | |
download | nutyx-pakxe-6dc94643ed8b69ee79ccb06bad18b4547faee483.tar.gz nutyx-pakxe-6dc94643ed8b69ee79ccb06bad18b4547faee483.tar.bz2 nutyx-pakxe-6dc94643ed8b69ee79ccb06bad18b4547faee483.tar.xz nutyx-pakxe-6dc94643ed8b69ee79ccb06bad18b4547faee483.zip |
pygtk#2.22.0-2, maj port
Diffstat (limited to 'extra/pygtk/python27.patch')
-rw-r--r-- | extra/pygtk/python27.patch | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/extra/pygtk/python27.patch b/extra/pygtk/python27.patch new file mode 100644 index 000000000..9bbe2b5ae --- /dev/null +++ b/extra/pygtk/python27.patch @@ -0,0 +1,50 @@ +diff --git a/gtk/gtkmodule.c b/gtk/gtkmodule.c +index c0e1493..aa8cf10 100644 +--- a/gtk/gtkmodule.c ++++ b/gtk/gtkmodule.c +@@ -227,8 +227,12 @@ init_gtk(void) + pygtk_add_stock_items(d); + + /* extension API */ +- PyDict_SetItemString(d, "_PyGtk_API", +- o=PyCObject_FromVoidPtr(&functions, NULL)); ++#if PY_VERSION_HEX >= 0x02070000 ++ o = PyCapsule_New(&functions, "gtk._gtk._PyGtk_API", NULL); ++#else ++ o = PyCObject_FromVoidPtr(&functions, NULL); ++#endif ++ PyDict_SetItemString(d, "_PyGtk_API", o); + Py_DECREF(o); + + PyGtkDeprecationWarning = PyErr_NewException("gtk.GtkDeprecationWarning", +diff --git a/gtk/pygtk.h b/gtk/pygtk.h +index 573c3b9..e4c680f 100644 +--- a/gtk/pygtk.h ++++ b/gtk/pygtk.h +@@ -60,6 +60,18 @@ struct _PyGtk_FunctionStruct *_PyGtk_API; + + + /* a function to initialise the pygtk functions */ ++ ++/* Python 2.7 introduced the PyCapsule API and deprecated the CObject API */ ++#if PY_VERSION_HEX >= 0x02070000 ++#define init_pygtk() G_STMT_START { \ ++ void *capsule = PyCapsule_Import("gtk._gtk._PyGtk_API", 0); \ ++ if (!capsule) { \ ++ return; \ ++ } \ ++ _PyGtk_API = (struct _PyGtk_FunctionStruct*)capsule; \ ++} G_STMT_END ++#else /* PY_VERSION_HEX */ ++/* Python 2.6 and earlier use the CObject API */ + #define init_pygtk() G_STMT_START { \ + PyObject *pygtk = PyImport_ImportModule("gtk"); \ + if (pygtk != NULL) { \ +@@ -79,6 +91,7 @@ struct _PyGtk_FunctionStruct *_PyGtk_API; + return; \ + } \ + } G_STMT_END ++#endif /* PY_VERSION_HEX */ + + #endif + |