diff options
| author | Johan Dahlin <johan@gnome.org> | 2008-07-20 12:48:13 +0000 |
|---|---|---|
| committer | Johan Dahlin <johan@src.gnome.org> | 2008-07-20 12:48:13 +0000 |
| commit | 9cd866c9066eaa933b54e77225ada672fcfacad3 (patch) | |
| tree | 25486f48cf8a267bdef8320e20d0385e41dbb1ac /gobject/__init__.py | |
| parent | 723d35fc2d1f65e3d040c3b61ada66d45b84a481 (diff) | |
| download | pygobject-9cd866c9066eaa933b54e77225ada672fcfacad3.tar.gz pygobject-9cd866c9066eaa933b54e77225ada672fcfacad3.tar.xz pygobject-9cd866c9066eaa933b54e77225ada672fcfacad3.zip | |
Install the glib module, the helper library and the headers. Use it from
2008-07-20 Johan Dahlin <johan@gnome.org>
* glib/Makefile.am:
* gobject/Makefile.am:
* gobject/__init__.py:
* gobject/gobjectmodule.c (pyg_threads_init), (pyg_error_check),
(pyg_gerror_exception_check), (init_gobject):
* gobject/option.py:
Install the glib module, the helper library and the headers.
Use it from gobject and remove the old glib specific code from there.
svn path=/trunk/; revision=842
Diffstat (limited to 'gobject/__init__.py')
| -rw-r--r-- | gobject/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gobject/__init__.py b/gobject/__init__.py index 488d87e..8eff77e 100644 --- a/gobject/__init__.py +++ b/gobject/__init__.py @@ -27,6 +27,11 @@ try: except ImportError: pass +from glib import spawn_async, idle_add, timeout_add, timeout_add_seconds, \ + io_add_watch, source_remove, child_watch_add, markup_escape_text, \ + get_current_time, filename_display_name, filename_display_basename, \ + filename_from_utf8, get_application_name, set_application_name, \ + get_prgname, set_prgname, main_depth, Pid, GError, glib_version from gobject.constants import * from _gobject import * _PyGObject_API = _gobject._PyGObject_API |
