[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Re: Draft PEP on RSON configuration file format

Kirill Simonov

3/2/2010 3:03:00 AM

Patrick Maupin wrote:
> On Mon, Mar 1, 2010 at 8:02 PM, Kirill Simonov <xi@gamma.dn.ua> wrote:
>
> BTW, congratulations on slogging through the YAML grammar to generate
> such a good working C library!
>
> That must have been a tremendous effort.

The trick was to completely ignore the grammar described in the
specification. In fact, the syntax of YAML is pretty close the Python
syntax and, with some effort, the Python scanner and parser could be
adapted to parsing YAML. Once I realized it, I got a working parser in
a week or so.

Thanks,
Kirill