summaryrefslogtreecommitdiff
path: root/ply
Commit message (Expand)AuthorAgeFilesLines
* Reverted p_error() APIDavid Beazley2012-04-261-9/+9
* Changes to panic mode error recoveryDavid Beazley2012-04-261-21/+53
* Enhanced tracking of positional information in error tokens.David Beazley2012-04-191-2/+20
* Changes to @TOKEN decorator to store regexes in a .regex attribute of functio...David Beazley2012-04-181-9/+19
* Minor bug fixesDavid Beazley2012-04-183-7/+8
* Minor bug fix for Python2.6David Beazley2011-02-171-1/+1
* Bumped version numberDavid Beazley2011-02-172-4/+4
* Patched syntax for Python 3.David Beazley2011-02-171-16/+16
* Version number cleanupDavid Beazley2009-09-021-1/+1
* A few minor bug fixesDavid Beazley2009-08-272-3/+4
* Fixed buglet in the 3.2 releaseDavid Beazley2009-03-251-2/+1
* Reduced number of warning messages for repeated r/r conflictsDavid Beazley2009-03-241-1/+6
* License change to BSDDavid Beazley2009-03-242-35/+53
* Performance speedup. Improved warningsDavid Beazley2009-03-241-15/+24
* Added support for picking the parsing tables instead of writing a .py file.David Beazley2009-03-231-3/+68
* Bumped version numberDavid Beazley2009-03-231-2/+2
* Reverted back to MD5 signatures. The CRC32 calculation wasn't supported on I...David Beazley2009-03-231-9/+12
* Fixed rule numbering in parser.outDavid Beazley2009-03-131-1/+1
* Fixed bad string formatting.David Beazley2009-03-131-1/+1
* Minor bug fixesDavid Beazley2009-02-281-14/+18
* Added nowarn back as an argument to lex so the API isn't broken.David Beazley2009-02-071-1/+1
* Fixed EOF syntax error handling bug.David Beazley2009-02-061-3/+3
* Removed a generator expression that was causing problems in Python 2.3David Beazley2009-02-061-1/+1
* (no commit message)David Beazley2009-02-061-0/+2
* Fixed minor bug in ignore characters with lexer statesDavid Beazley2009-02-041-1/+2
* Fixed missing lexer attribute on some tokens when calling p_error() functions.David Beazley2009-02-031-0/+6
* Fixes to debugging output and docsDavid Beazley2009-02-032-18/+48
* Bug fix in sorting on Python 3David Beazley2009-02-021-1/+1
* Refactored the lex builder. A lot of error messages changed so unit tests ha...David Beazley2009-02-022-293/+375
* Removed a dead if-statement. Results in a 6-7% speedup inDavid Beazley2009-02-011-19/+62
* Significant cleanup. Refactoring of yacc internalsDavid Beazley2009-01-132-1702/+1924
* Fixed relative import problemsDavid Beazley2008-11-281-24/+22
* Python 2.6/3.0 compatibility changesDavid Beazley2008-11-272-241/+296
* Fixed a bug with negative stack indicesDavid Beazley2008-11-042-3/+136
* Revamped testing frameworkDavid Beazley2008-05-292-2/+2
* Bug fixesDavid Beazley2008-05-282-24/+23
* Fixed lextab bugDavid Beazley2008-05-281-3/+20
* Bug fixes. Performance optimizationDavid Beazley2008-05-122-59/+672
* Change to rsplit() to split()David Beazley2008-05-062-152/+151
* Various bug fixes and cleanupDavid Beazley2008-05-042-25/+57
* fixed p_error optimize bugDavid Beazley2008-04-282-63/+95
* Fixed bug with nonassoc precedenceDavid Beazley2008-02-281-1/+1
* Modified input() to accept objects that appear to be strings (by returning ch...David Beazley2008-02-161-1/+3
* *** empty log message ***David Beazley2007-12-011-3/+6
* Further performance optimization in token()David Beazley2007-11-301-4/+10
* Modified the lexer so that token functions can be aliased. For example, if ...David Beazley2007-11-291-29/+9
* Modification that allows production rules and other information to be defined...David Beazley2007-11-281-1/+5
* Modification to allow lex() to work with tokens and rules defined in inner fu...David Beazley2007-11-281-27/+44
* Added .error() method to productions to emulate YYERROR macro.David Beazley2007-11-281-10/+28
* Fixed bug related to state changes and ignored characters.David Beazley2007-11-271-1/+2