userscripts: Add docs for _QtFIFOReader attributes.
This commit is contained in:
parent
494d48aac1
commit
430b133c41
@ -33,7 +33,16 @@ from qutebrowser.misc import guiprocess
|
|||||||
|
|
||||||
class _QtFIFOReader(QObject):
|
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)
|
got_line = pyqtSignal(str)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user