summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2008-07-14 16:15:43 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2008-07-14 16:15:43 +0100
commit05c19f23c63246322e4c9dfed2af47aaf77f7619 (patch)
treec553b776a92361643e29deb0034b078355041e51
parentcf64e96607157f4e73c6dacaa34fb54fead26d1f (diff)
downloaddbus-python-05c19f23c63246322e4c9dfed2af47aaf77f7619.tar.gz
DBusPyServer get_address, get_id: correct docs, these return str not String
-rw-r--r--_dbus_bindings/server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/_dbus_bindings/server.c b/_dbus_bindings/server.c
index f9ede3c..fbe1f4c 100644
--- a/_dbus_bindings/server.c
+++ b/_dbus_bindings/server.c
@@ -417,7 +417,7 @@ Server_disconnect (Server *self, PyObject *args UNUSED)
}
PyDoc_STRVAR(Server_get_address__doc__,
-"get_address() -> String\n\n"
+"get_address() -> str\n\n"
"Returns the address of the server.");
static PyObject *
Server_get_address(Server *self, PyObject *args UNUSED)
@@ -434,7 +434,7 @@ Server_get_address(Server *self, PyObject *args UNUSED)
}
PyDoc_STRVAR(Server_get_id__doc__,
-"get_id() -> String\n\n"
+"get_id() -> str\n\n"
"Returns the unique ID of the server.");
static PyObject *
Server_get_id(Server *self, PyObject *args UNUSED)