On Sunday, February 4, 2018 at 5:32:51 PM UTC-6, Stanley Denman wrote:
> On Sunday, February 4, 2018 at 4:26:24 PM UTC-6, Stanley Denman wrote:
> > I am trying to parse a Python nested list that is the result of the
> > getOutlines() function of module PyPFD2 using pyparsing module. This is the
>
On Sunday, February 4, 2018 at 5:06:26 PM UTC-6, Steven D'Aprano wrote:
> On Sun, 04 Feb 2018 14:26:10 -0800, Stanley Denman wrote:
>
> > I am trying to parse a Python nested list that is the result of the
> > getOutlines() function of module PyPFD2 using pyparsing module.
>
> pyparsing parses st
On Sunday, February 4, 2018 at 4:26:24 PM UTC-6, Stanley Denman wrote:
> I am trying to parse a Python nested list that is the result of the
> getOutlines() function of module PyPFD2 using pyparsing module. This is the
> result I get. what in the world are 'expandtabs' and why is that making a
>
On Sun, 04 Feb 2018 14:26:10 -0800, Stanley Denman wrote:
> I am trying to parse a Python nested list that is the result of the
> getOutlines() function of module PyPFD2 using pyparsing module.
pyparsing parses strings, not lists.
I fear that you have completely misunderstood what pyparsing does
On Mon, Feb 5, 2018 at 9:26 AM, Stanley Denman
wrote:
> I am trying to parse a Python nested list that is the result of the
> getOutlines() function of module PyPFD2 using pyparsing module. This is the
> result I get. what in the world are 'expandtabs' and why is that making a
> difference to m
I am trying to parse a Python nested list that is the result of the
getOutlines() function of module PyPFD2 using pyparsing module. This is the
result I get. what in the world are 'expandtabs' and why is that making a
difference to my parse attempt?
Python Code
7
import PPDF2,pyparsing
from pyp