From 99f982f844aa75cfd895e16bc6f3dcac778e31ac Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sun, 16 Dec 2012 15:24:38 +0100 Subject: Little readability improvement --- MAT/parser.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'MAT') 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 import mat -NOMETA = ('.bmp', '.rdf', '.txt', '.xml', '.rels') -#bmp : image -#rdf : text -#txt : plain text -#xml : formated text -#rels : openxml foramted text - +NOMETA = ('.bmp', # image + '.rdf', # text + '.txt', # plain text + '.xml', # formated text (XML) + '.rels', # openXML formated text + ) FIELD = object() + class GenericParser(object): ''' Parent class of all parsers -- cgit v1.3