Search
Clear search
Close search
Main menu
Google apps
Groups
Sign in
Groups
ply-hack
Conversations
About
Send feedback
Help
ply-hack
1–30 of 269
Mark all as read
Report group
0 selected
dbea...@gmail.com
, …
Boriel
3
5/8/17
PLY-3.5 released
OMG. Thanks! I overlooked this message :( I've successfully used ply (ZX Basic compiler, http://
unread,
PLY-3.5 released
OMG. Thanks! I overlooked this message :( I've successfully used ply (ZX Basic compiler, http://
5/8/17
Austin Hastings
7/7/15
Lexer states without explicit terminators?
Howdy, I'm trying to parse numbers using lexer states, and there aren't any explicit ending
unread,
Lexer states without explicit terminators?
Howdy, I'm trying to parse numbers using lexer states, and there aren't any explicit ending
7/7/15
Austin Hastings
7/7/15
Lexing numeric literals
Consider the lowly number: 0 01 0b010101 0xdeadbeef 0755 0o123 0d299 0. 0.0 1 1.0e+0 0xcafe.babep-2 .
unread,
Lexing numeric literals
Consider the lowly number: 0 01 0b010101 0xdeadbeef 0755 0o123 0d299 0. 0.0 1 1.0e+0 0xcafe.babep-2 .
7/7/15
William Roberts
5/18/15
yply issues
I am trying to use yply to generate a parser off of an existing parser written with bison/flex. The
unread,
yply issues
I am trying to use yply to generate a parser off of an existing parser written with bison/flex. The
5/18/15
Jelle Feringa
,
A.T.Hofkamp
3
11/18/13
parsing a block of code
Dear Albert, Thanks so much for your constructive comments. I first completed the tokenization of the
unread,
parsing a block of code
Dear Albert, Thanks so much for your constructive comments. I first completed the tokenization of the
11/18/13
Stefan J
, …
john...@jptechnical.co.uk
4
8/24/13
shift / reduce error
I tried your psuedo code in PLY with and duplicated the 4 shift/reduce conflicts --------------------
unread,
shift / reduce error
I tried your psuedo code in PLY with and duplicated the 4 shift/reduce conflicts --------------------
8/24/13
David Beazley
, …
Andrew Dalke
15
8/6/13
Writing parsetab.py data to /tmp
On Aug 6, 2013, at 11:19 AM, Andrew Dalke wrote: > In short, I don't see any way to get what
unread,
Writing parsetab.py data to /tmp
On Aug 6, 2013, at 11:19 AM, Andrew Dalke wrote: > In short, I don't see any way to get what
8/6/13
john...@jptechnical.co.uk
, …
Bruce Frederiksen
9
7/9/13
How to handle 'free form' text alongside grammar defined statements
The preprocessor is good enough to use now and I've annotated it with plenty of comments. Source
unread,
How to handle 'free form' text alongside grammar defined statements
The preprocessor is good enough to use now and I've annotated it with plenty of comments. Source
7/9/13
David Beazley
6/14/13
Test message
Sorry, just a test message to verify that the group email is still working. -Dave
unread,
Test message
Sorry, just a test message to verify that the group email is still working. -Dave
6/14/13
Robert Grosse
3/29/13
ply custom token precedence
I suggest adding a way to provide a custom precedence for the token regexs. I'm currently stuck
unread,
ply custom token precedence
I suggest adding a way to provide a custom precedence for the token regexs. I'm currently stuck
3/29/13
Steve Garland
,
David Beazley
2
1/14/13
Redirecting Ply error messages
The whole reason for using the logging interface is to make it something that could be completely
unread,
Redirecting Ply error messages
The whole reason for using the logging interface is to make it something that could be completely
1/14/13
Kene Meniru
, …
A.T.Hofkamp
8
1/2/13
advise on using ply
OK thanks for the replies. It kinda surprised me but I realized suddenly I can just use python for
unread,
advise on using ply
OK thanks for the replies. It kinda surprised me but I realized suddenly I can just use python for
1/2/13
Enrique Pérez
2
10/30/12
preserving whitespace
The problem was elsewhere, not in my usage of ply. Sorry about the noise 2012/10/26 Enrique Pérez
unread,
preserving whitespace
The problem was elsewhere, not in my usage of ply. Sorry about the noise 2012/10/26 Enrique Pérez
10/30/12
Robert Grosse
, …
David Beazley
5
10/30/12
p_error parameters lack information
Why not make it take **kwargs rather than error_info_dict? That way it can easily be extended while
unread,
p_error parameters lack information
Why not make it take **kwargs rather than error_info_dict? That way it can easily be extended while
10/30/12
Erez
,
David Beazley
3
10/10/12
Help with Java's <<
Thanks, that's very useful! I eventually solved this problems by doing: relationalexpression :
unread,
Help with Java's <<
Thanks, that's very useful! I eventually solved this problems by doing: relationalexpression :
10/10/12
A.T.Hofkamp
, …
David Beazley
4
8/20/12
Re: 100 groups in python re limitation slows down PLY performance
Having just looked at the Python source, the 100 group limit is literally just hard coded into
unread,
Re: 100 groups in python re limitation slows down PLY performance
Having just looked at the Python source, the 100 group limit is literally just hard coded into
8/20/12
Konstantin Tcholokachvili
8/4/12
Why 'Illegal character" happens?
Hello, I defined rules, which I think are correct but I got an error indicating me "Illegal
unread,
Why 'Illegal character" happens?
Hello, I defined rules, which I think are correct but I got an error indicating me "Illegal
8/4/12
Grzegorz Milka
,
A.T.Hofkamp
2
8/1/12
Problem with empty production. Syntax error on supposedly correct input.
On 07/31/2012 05:54 PM, Grzegorz Milka wrote: > Hello, > > I decided to use ply to implement
unread,
Problem with empty production. Syntax error on supposedly correct input.
On 07/31/2012 05:54 PM, Grzegorz Milka wrote: > Hello, > > I decided to use ply to implement
8/1/12
A.T.Hofkamp
7/31/12
Re: ply handling huge files
On 07/20/2012 10:24 AM, gthomas wrote: > You should mmap the file: > > fh = open(filename,
unread,
Re: ply handling huge files
On 07/20/2012 10:24 AM, gthomas wrote: > You should mmap the file: > > fh = open(filename,
7/31/12
A.T.Hofkamp
7/31/12
Re: Yacc - nesting of if - else if - else - end ifstatements
On 07/12/2012 06:19 PM, Joshua Boshi wrote: > Below is my sucessfull approach without else-if part
unread,
Re: Yacc - nesting of if - else if - else - end ifstatements
On 07/12/2012 06:19 PM, Joshua Boshi wrote: > Below is my sucessfull approach without else-if part
7/31/12
Kent Tenney
,
David Beazley
2
7/2/12
Parsing strace output: a job for PLY?
Hi, It's really hard to say if PLY could be used for this. For best results, PLY assumes that
unread,
Parsing strace output: a job for PLY?
Hi, It's really hard to say if PLY could be used for this. For best results, PLY assumes that
7/2/12
Giordano Bruno
,
Andrew Dalke
2
5/1/12
Translating code from Python to Smalltalk
On Apr 24, 2012, at 1:41 PM, Giordano Bruno wrote: > Any links or code template for doing simple
unread,
Translating code from Python to Smalltalk
On Apr 24, 2012, at 1:41 PM, Giordano Bruno wrote: > Any links or code template for doing simple
5/1/12
Boriel
,
A.T.Hofkamp
2
5/1/12
GLR
On 04/29/2012 12:51 PM, Boriel wrote: > Hi, > > I've been using PLY for about 4 years,
unread,
GLR
On 04/29/2012 12:51 PM, Boriel wrote: > Hi, > > I've been using PLY for about 4 years,
5/1/12
David Beazley
, …
Boriel
11
4/27/12
Would anyone miss table file output in PLY?
I agree with Erez and Bart. BTW, I currently notice some delay when starting ply (my compiler, http:/
unread,
Would anyone miss table file output in PLY?
I agree with Erez and Bart. BTW, I currently notice some delay when starting ply (my compiler, http:/
4/27/12
David Beazley
12/28/11
Write a Compiler - January 17-20, 2012
As many of you know, PLY was originally developed more than 10 years ago when I decided to use Python
unread,
Write a Compiler - January 17-20, 2012
As many of you know, PLY was originally developed more than 10 years ago when I decided to use Python
12/28/11
Tarek Ziadé
, …
Michael Foord
7
9/27/11
Getting back to the DSL
On Tue, Sep 27, 2011 at 2:49 PM, Michael Foord <fuzz...@gmail.com> wrote: ... > > You
unread,
Getting back to the DSL
On Tue, Sep 27, 2011 at 2:49 PM, Michael Foord <fuzz...@gmail.com> wrote: ... > > You
9/27/11
Peter Olsen
,
A.T.Hofkamp
2
9/1/11
Can't get the HTML documentation's calculator example to work.
On 01/09/11 02:02, Peter Olsen wrote: > # Build the lexer > lexer = lex.Lexer() Here my working
unread,
Can't get the HTML documentation's calculator example to work.
On 01/09/11 02:02, Peter Olsen wrote: > # Build the lexer > lexer = lex.Lexer() Here my working
9/1/11
Tarek Ziadé
, …
A.T.Hofkamp
5
8/17/11
Simple trailing commas ,
On Wed, Aug 17, 2011 at 12:53 PM, ATHofkamp <atho...@tue.nl> wrote: > On 17/08/11 12:07,
unread,
Simple trailing commas ,
On Wed, Aug 17, 2011 at 12:53 PM, ATHofkamp <atho...@tue.nl> wrote: > On 17/08/11 12:07,
8/17/11
Francesco Bochicchio
7/27/11
parser for rational rose .mdl files
Hi all, As part of a work for my company, I have used PLY to develop a partial parser to extract
unread,
parser for rational rose .mdl files
Hi all, As part of a work for my company, I have used PLY to develop a partial parser to extract
7/27/11
Sam Denton
, …
Brian Clapper
5
6/10/11
Parsing (well, lexing, really) wikipedia markup
One other idea that's occurred to me (I think I saw it somewhere in the PLY pages, but I can'
unread,
Parsing (well, lexing, really) wikipedia markup
One other idea that's occurred to me (I think I saw it somewhere in the PLY pages, but I can'
6/10/11