From 430b133c417df78fc876a4700f6a0e7167cebf2f Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 13 Dec 2015 13:10:51 +0100 Subject: [PATCH] userscripts: Add docs for _QtFIFOReader attributes. --- qutebrowser/commands/userscripts.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/qutebrowser/commands/userscripts.py b/qutebrowser/commands/userscripts.py index 0c6c748c8..6931dce0a 100644 --- a/qutebrowser/commands/userscripts.py +++ b/qutebrowser/commands/userscripts.py @@ -33,7 +33,16 @@ from qutebrowser.misc import guiprocess class _QtFIFOReader(QObject): - """A FIFO reader based on a QSocketNotifier.""" + """A FIFO reader based on a QSocketNotifier. + + Attributes: + _filepath: The path to the opened FIFO. + _fifo: The Python file object for the FIFO. + _notifier: The QSocketNotifier used. + + Signals: + got_line: Emitted when a whole line arrived. + """ got_line = pyqtSignal(str)