21 |
21 |
22 def __init__(self, device, lexers): |
22 def __init__(self, device, lexers): |
23 """ |
23 """ |
24 Constructor |
24 Constructor |
25 |
25 |
26 @param device reference to the I/O device to read from (QIODevice) |
26 @param device reference to the I/O device to read from |
|
27 @type QIODevice |
27 @param lexers dictionary of lexer objects for which to import the |
28 @param lexers dictionary of lexer objects for which to import the |
28 styles |
29 styles |
|
30 @type dict |
29 """ |
31 """ |
30 XMLStreamReaderBase.__init__(self, device) |
32 XMLStreamReaderBase.__init__(self, device) |
31 |
33 |
32 self.lexers = lexers |
34 self.lexers = lexers |
33 |
35 |