summaryrefslogtreecommitdiff
path: root/systemd/login.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2016-09-18 12:15:05 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2016-09-20 09:38:36 -0400
commit42f627b30236e92f0b7dd76db8069580ce8a9199 (patch)
treed3efc21db07000da7cf2926318f54b0deac31b2b /systemd/login.c
parent814cdb9d6ae2aea7a61f92928e5ad77bbd6c87a4 (diff)
downloadpython-systemd-42f627b30236e92f0b7dd76db8069580ce8a9199.tar.gz
Reformat documentation to be more PEP257-compliant
Wrapping the sources to ~80 columns means that the formatted output is annoying to read. Rewrap to ~74 columns in the output. Also remove some obsolete descritions of journal permissions and refer to journalctl(1) instead. Add some missing docstrings.
Diffstat (limited to 'systemd/login.c')
-rw-r--r--systemd/login.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/systemd/login.c b/systemd/login.c
index 2bc3978..ff74dc7 100644
--- a/systemd/login.c
+++ b/systemd/login.c
@@ -145,11 +145,10 @@ static void Monitor_dealloc(Monitor* self) {
PyDoc_STRVAR(Monitor__doc__,
"Monitor([category]) -> ...\n\n"
- "Monitor may be used to monitor login sessions, users, seats,\n"
- "and virtual machines/containers. Monitor provides a file\n"
- "descriptor which can be integrated in an external event loop.\n"
- "See man:sd_login_monitor_new(3) for the details about what\n"
- "can be monitored.");
+ "Monitor may be used to monitor login sessions, users, seats, and virtual\n"
+ "machines/containers. Monitor provides a file descriptor which can be\n"
+ "integrated in an external event loop.\n\n"
+ "See man:sd_login_monitor_new(3) for the details about what can be monitored.");
static int Monitor_init(Monitor *self, PyObject *args, PyObject *keywds) {
const char *category = NULL;
int r;
@@ -182,8 +181,8 @@ static PyObject* Monitor_fileno(Monitor *self, PyObject *args) {
PyDoc_STRVAR(Monitor_get_events__doc__,
"get_events() -> int\n\n"
- "Returns a mask of poll() events to wait for on the file\n"
- "descriptor returned by .fileno().\n\n"
+ "Returns a mask of poll() events to wait for on the file descriptor returned\n"
+ "by .fileno().\n\n"
"See man:sd_login_monitor_get_events(3) for further discussion.");
static PyObject* Monitor_get_events(Monitor *self, PyObject *args) {
int r = sd_login_monitor_get_events(self->monitor);