File: ANNOUNCE

package info (click to toggle)
ply 3.9-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 1,344 kB
  • sloc: python: 10,171; perl: 62; makefile: 29; sh: 2
file content (40 lines) | stat: -rw-r--r-- 1,416 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
August 31, 2016

                  Announcing :  PLY-3.9 (Python Lex-Yacc)

                        http://www.dabeaz.com/ply

I'm pleased to announce PLY-3.9--a pure Python implementation of the
common parsing tools lex and yacc.  PLY-3.9 is a minor bug fix
release.  It supports both Python 2 and Python 3.

If you are new to PLY, here are a few highlights:

-  PLY is closely modeled after traditional lex/yacc.  If you know how 
   to use these or similar tools in other languages, you will find
   PLY to be comparable.

-  PLY provides very extensive error reporting and diagnostic
   information to assist in parser construction.  The original
   implementation was developed for instructional purposes.  As
   a result, the system tries to identify the most common types
   of errors made by novice users.

-  PLY provides full support for empty productions, error recovery,
   precedence rules, and ambiguous grammars.

-  Parsing is based on LR-parsing which is fast, memory efficient,
   better suited to large grammars, and which has a number of nice
   properties when dealing with syntax errors and other parsing 
   problems. Currently, PLY can build its parsing tables using 
   either SLR or LALR(1) algorithms. 

More information about PLY can be obtained on the PLY webpage at:

                   http://www.dabeaz.com/ply

PLY is freely available.

Cheers,

David Beazley (http://www.dabeaz.com)