I just reviewed what the re "\s" signifies: whitespace.  This is easy,
pyparsing ignores all intervening whitespace by default.  So mp3Entry
simplfies to:

mp3entry = valign + number.setResultsName("number"­­­) + tdEnd + \
            tdStart + aStart + \
            SkipTo(tdEnd).setResultsName("­n­ame") + tdEnd

which leads me to another question - isn't there a closing </a> in
there somewhere, probably at the end of the name?  If so, then you
might be better off with:

mp3entry = valign + number.setResultsName("number"­­­) + tdEnd + \
            tdStart + aStart + \
            SkipTo(aEnd).setResultsName("­n­ame") + aEnd + tdEnd

-- Paul

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to