summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2008-07-17 11:22:25 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-07-17 11:22:25 +0000
commitc5e6c27c01bd1a7cca079df7d22aa95e58e7de63 (patch)
tree80be41946dbd806886840ac10a9106e2043dd5be
parentea9b6c9a234746aea8416b540b577f145736082d (diff)
downloadpygobject-c5e6c27c01bd1a7cca079df7d22aa95e58e7de63.tar.gz
The module is called gio._gio, not just _gio.
2008-07-17 Johan Dahlin <johan@gnome.org> * gio/giomodule.c (init_gio): (DL_EXPORT): The module is called gio._gio, not just _gio. svn path=/trunk/; revision=822
-rw-r--r--ChangeLog1
-rw-r--r--gio/giomodule.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a91285ab..bd43c8dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
* gio/giomodule.c (init_gio):
Add a pygio_version module attribute
+ (DL_EXPORT): The module is called gio._gio, not just _gio.
2008-07-17 Johan Dahlin <johan@gnome.org>
diff --git a/gio/giomodule.c b/gio/giomodule.c
index ad81d31b..8ee6d476 100644
--- a/gio/giomodule.c
+++ b/gio/giomodule.c
@@ -46,7 +46,7 @@ init_gio(void)
/* perform any initialisation required by the library here */
- m = Py_InitModule("_gio", pygio_functions);
+ m = Py_InitModule("gio._gio", pygio_functions);
d = PyModule_GetDict(m);
init_pygobject();