From f9c2eb836f365116bc34587394c32a1c7e86e083 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 13 Oct 2014 22:48:37 +0200 Subject: [PATCH] Adjust docstring --- qutebrowser/utils/ipc.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/qutebrowser/utils/ipc.py b/qutebrowser/utils/ipc.py index 49ee9e3ae..d9a3a3a22 100644 --- a/qutebrowser/utils/ipc.py +++ b/qutebrowser/utils/ipc.py @@ -41,7 +41,13 @@ class IPCError(Exception): class IPCServer(QObject): - """IPC server to which clients connect to.""" + """IPC server to which clients connect to. + + Attributes: + _timer: A timer to handle timeouts. + _server: A QLocalServer to accept new connections. + _socket: The QLocalSocket we're currently connected to. + """ def __init__(self, parent=None): """Start the IPC server and listen to commands."""