summaryrefslogtreecommitdiff
path: root/MAT/parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'MAT/parser.py')
-rw-r--r--MAT/parser.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/MAT/parser.py b/MAT/parser.py
index d2eaf9c..4427b01 100644
--- a/MAT/parser.py
+++ b/MAT/parser.py
@@ -9,16 +9,16 @@ import os
9 9
10import mat 10import mat
11 11
12NOMETA = ('.bmp', '.rdf', '.txt', '.xml', '.rels') 12NOMETA = ('.bmp', # image
13#bmp : image 13 '.rdf', # text
14#rdf : text 14 '.txt', # plain text
15#txt : plain text 15 '.xml', # formated text (XML)
16#xml : formated text 16 '.rels', # openXML formated text
17#rels : openxml foramted text 17 )
18
19 18
20FIELD = object() 19FIELD = object()
21 20
21
22class GenericParser(object): 22class GenericParser(object):
23 ''' 23 '''
24 Parent class of all parsers 24 Parent class of all parsers