diff options
author | Jonny Lamb <jonnylamb@gnome.org> | 2009-10-20 19:59:15 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2009-10-20 20:10:28 +0800 |
commit | 6496713f0997ab90e7ee686819640b22b4911aea (patch) | |
tree | c18874181bb0cf1a8abaafa0a946273df5b684b1 /python/pyempathy/pyempathy.override | |
parent | 90469882929d06151352d3d8e8b0e6a1f5229905 (diff) | |
download | gsoc2013-empathy-6496713f0997ab90e7ee686819640b22b4911aea.tar gsoc2013-empathy-6496713f0997ab90e7ee686819640b22b4911aea.tar.gz gsoc2013-empathy-6496713f0997ab90e7ee686819640b22b4911aea.tar.bz2 gsoc2013-empathy-6496713f0997ab90e7ee686819640b22b4911aea.tar.lz gsoc2013-empathy-6496713f0997ab90e7ee686819640b22b4911aea.tar.xz gsoc2013-empathy-6496713f0997ab90e7ee686819640b22b4911aea.tar.zst gsoc2013-empathy-6496713f0997ab90e7ee686819640b22b4911aea.zip |
Remove python bindings. (Closes bug #599039)
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'python/pyempathy/pyempathy.override')
-rw-r--r-- | python/pyempathy/pyempathy.override | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/python/pyempathy/pyempathy.override b/python/pyempathy/pyempathy.override deleted file mode 100644 index a96c7c6f3..000000000 --- a/python/pyempathy/pyempathy.override +++ /dev/null @@ -1,71 +0,0 @@ -%% -headers -#include <Python.h> -#include <pygobject.h> -#include "empathy-account-manager.h" -#include "empathy-account-settings.h" -#include "empathy-call-factory.h" -#include "empathy-chatroom.h" -#include "empathy-chatroom-manager.h" -#include "empathy-connection-managers.h" -#include "empathy-connectivity.h" -#include "empathy-contact.h" -#include "empathy-contact-groups.h" -#include "empathy-contact-list.h" -#include "empathy-contact-manager.h" -#include "empathy-contact-monitor.h" -#include "empathy-debug.h" -#include "empathy-debugger.h" -#include "empathy-dispatcher.h" -#include "empathy-enum-types.h" -#include "empathy-ft-factory.h" -#include "empathy-ft-handler.h" -#include "empathy-idle.h" -#include "empathy-irc-network.h" -#include "empathy-irc-network-manager.h" -#include "empathy-irc-server.h" -#include "empathy-log-manager.h" -#include "empathy-log-store-empathy.h" -#include "empathy-message.h" -#include "empathy-status-presets.h" -#include "empathy-time.h" -#include "empathy-tp-call.h" -#include "empathy-tp-chat.h" -#include "empathy-tp-contact-factory.h" -#include "empathy-tp-contact-list.h" -#include "empathy-tp-file.h" -#include "empathy-tp-roomlist.h" -#include "empathy-tube-handler.h" -#include "empathy-utils.h" - -void empathy_add_constants(PyObject *module, const gchar *strip_prefix); -void empathy_register_classes(PyObject *d); - -%% -modulename empathy -%% -ignore-glob - *_get_type -%% -import gobject.GObject as PyGObject_Type -%% -override empathy_contact_list_get_members kwargs -static PyObject * -_wrap_empathy_contact_list_get_members(PyGObject *self, PyObject *args, PyObject *kwargs) -{ - - PyObject *py_contacts = PyList_New(0); - GList *l, *contacts; - - contacts = empathy_contact_list_get_members(EMPATHY_CONTACT_LIST(self->obj)); - - for (l = contacts; l; l = l->next) { - EmpathyContact *contact; - contact = l->data; - PyList_Append(py_contacts, pygobject_new((GObject *) contact)); - } - - return py_contacts; - -} -%% |