2 |
2 |
3 # Copyright (c) 2004 - 2010 Detlev Offenbach <detlev@die-offenbachs.de> |
3 # Copyright (c) 2004 - 2010 Detlev Offenbach <detlev@die-offenbachs.de> |
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing a base class for all of eric4s XML writers. |
7 Module implementing a base class for all of eric5s XML writers. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 import pickle |
11 import pickle |
12 |
12 |
13 class XMLWriterBase(object): |
13 class XMLWriterBase(object): |
14 """ |
14 """ |
15 Class implementing a base class for all of eric4s XML writers. |
15 Class implementing a base class for all of eric5s XML writers. |
16 """ |
16 """ |
17 def __init__(self, file): |
17 def __init__(self, file): |
18 """ |
18 """ |
19 Constructor |
19 Constructor |
20 |
20 |