summaryrefslogtreecommitdiffstats
path: root/objects/server-object.c
diff options
context:
space:
mode:
authorChristopher Davis <loafier@gmail.com>2006-06-21 00:22:03 +0000
committerChristopher Davis <loafier@gmail.com>2006-06-21 00:22:03 +0000
commit7ddcc3b268c8c55b2d6fe80e87e090181fbc1bf7 (patch)
treecc0ceff989c10739bcb18ae0743579bfb5074c3a /objects/server-object.c
parentbb48c914c6239ed1dbcb29eb62d33d3ab91e7215 (diff)
downloadirssi-python-7ddcc3b268c8c55b2d6fe80e87e090181fbc1bf7.tar.gz
irssi-python-7ddcc3b268c8c55b2d6fe80e87e090181fbc1bf7.tar.xz
irssi-python-7ddcc3b268c8c55b2d6fe80e87e090181fbc1bf7.zip
Added a lot of object wrappers. Most are untested.
Will finish up the rest of the object wrappers perhaps tonight or tomorrow. Signal handling will need to be addressed ASAP. There are quite a lot of other global module functions remaining to be wraped, as well. git-svn-id: http://svn.irssi.org/repos/irssi-python@4286 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'objects/server-object.c')
-rw-r--r--objects/server-object.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/objects/server-object.c b/objects/server-object.c
index 23a33b0..c000b80 100644
--- a/objects/server-object.c
+++ b/objects/server-object.c
@@ -34,6 +34,7 @@ static void PyServer_dealloc(PyServer *self)
self->ob_type->tp_free((PyObject*)self);
}
+/* Getters */
PyDoc_STRVAR(PyServer_connect_time_doc,
"Time when connect() to server finished"
);
@@ -203,6 +204,7 @@ static PyGetSetDef PyServer_getseters[] = {
{NULL}
};
+/* Methods */
PyDoc_STRVAR(print_doc,
"Print to server\n"
);