aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-03-09 10:10:32 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-03-09 10:10:32 +0000
commit0685f1d5e1fc92e504da603f71c7187e29c31a4e (patch)
tree540d3045b40d73bfa394c74577cdf200907ea4b6
parent97c4bc6292114eb68b788c88dc42eb3c16858fa5 (diff)
Update lex and yacc
svn path=/trunk/; revision=48213
-rwxr-xr-xtools/lex.py4
-rwxr-xr-xtools/yacc.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/lex.py b/tools/lex.py
index 267ec100fc..bd32da9327 100755
--- a/tools/lex.py
+++ b/tools/lex.py
@@ -1,7 +1,7 @@
# -----------------------------------------------------------------------------
# ply: lex.py
#
-# Copyright (C) 2001-2009,
+# Copyright (C) 2001-2011,
# David M. Beazley (Dabeaz LLC)
# All rights reserved.
#
@@ -31,7 +31,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# -----------------------------------------------------------------------------
-__version__ = "3.3"
+__version__ = "3.4"
__tabversion__ = "3.2" # Version of table file used
import re, sys, types, copy, os
diff --git a/tools/yacc.py b/tools/yacc.py
index e9f5c65755..f70439ea5e 100755
--- a/tools/yacc.py
+++ b/tools/yacc.py
@@ -1,7 +1,7 @@
# -----------------------------------------------------------------------------
# ply: yacc.py
#
-# Copyright (C) 2001-2009,
+# Copyright (C) 2001-2011,
# David M. Beazley (Dabeaz LLC)
# All rights reserved.
#
@@ -59,7 +59,7 @@
# own risk!
# ----------------------------------------------------------------------------
-__version__ = "3.3"
+__version__ = "3.4"
__tabversion__ = "3.2" # Table version
#-----------------------------------------------------------------------------