diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-07-12 08:46:52 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-07-12 08:46:55 +0900 |
commit | 7e82a0403b22c323923c87bc3cf62ddb40518ba0 (patch) | |
tree | c358f2d6a176511c0cc7bdfde14a3d44b7cae7eb /gi/pygi-info.c | |
parent | 6db7944f8363094c12cbd3fe2daf8a887fda86b2 (diff) | |
download | pygobject2-7e82a0403b22c323923c87bc3cf62ddb40518ba0.tar.gz pygobject2-7e82a0403b22c323923c87bc3cf62ddb40518ba0.tar.bz2 pygobject2-7e82a0403b22c323923c87bc3cf62ddb40518ba0.zip |
Imported Upstream version 3.3.3
Change-Id: I8bfa0112c9875f5adea1ed6da89bde709cc6221c
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'gi/pygi-info.c')
-rw-r--r-- | gi/pygi-info.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gi/pygi-info.c b/gi/pygi-info.c index f3fedab..4efb467 100644 --- a/gi/pygi-info.c +++ b/gi/pygi-info.c @@ -135,12 +135,6 @@ _wrap_g_base_info_get_name (PyGIBaseInfo *self) } static PyObject * -_wrap_g_base_info_get_name_unescaped (PyGIBaseInfo *self) -{ - return PYGLIB_PyUnicode_FromString (g_base_info_get_name (self->info)); -} - -static PyObject * _wrap_g_base_info_get_namespace (PyGIBaseInfo *self) { return PYGLIB_PyUnicode_FromString (g_base_info_get_namespace (self->info)); @@ -163,7 +157,6 @@ _wrap_g_base_info_get_container (PyGIBaseInfo *self) static PyMethodDef _PyGIBaseInfo_methods[] = { { "get_name", (PyCFunction) _wrap_g_base_info_get_name, METH_NOARGS }, - { "get_name_unescaped", (PyCFunction) _wrap_g_base_info_get_name_unescaped, METH_NOARGS }, { "get_namespace", (PyCFunction) _wrap_g_base_info_get_namespace, METH_NOARGS }, { "get_container", (PyCFunction) _wrap_g_base_info_get_container, METH_NOARGS }, { NULL, NULL, 0 } |