summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2017-01-31 12:30:06 -0600
committerDavid Beazley <dave@dabeaz.com>2017-01-31 12:30:06 -0600
commitd951379d84450bdaa996a7201f62fce294ae02d3 (patch)
tree5ee2bdf50c26e2c2e167c7ccc5783d41f7f0533f
parent2ba2f31e3890abae5af884d3df60eb0b506b1ec7 (diff)
downloadply-3.10.tar.gz
Updated dates. Release info3.10
-rw-r--r--ANNOUNCE2
-rw-r--r--CHANGES4
-rw-r--r--README.md2
-rw-r--r--ply/lex.py2
-rw-r--r--ply/yacc.py2
5 files changed, 8 insertions, 4 deletions
diff --git a/ANNOUNCE b/ANNOUNCE
index 79ffebd..c430051 100644
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -1,4 +1,4 @@
-October 7, 2016
+January 31, 2017
Announcing : PLY-3.10 (Python Lex-Yacc)
diff --git a/CHANGES b/CHANGES
index a974a7c..815c231 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,9 @@
Version 3.10
---------------------
+01/31/17: beazley
+ Changed grammar signature computation to not involve hashing
+ functions. Parts are just combined into a big string.
+
10/07/16: beazley
Fixed Issue #101: Incorrect shift-reduce conflict resolution with
precedence specifier.
diff --git a/README.md b/README.md
index 7563583..e428f1b 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
PLY (Python Lex-Yacc) Version 3.10
-Copyright (C) 2001-2016
+Copyright (C) 2001-2017
David M. Beazley (Dabeaz LLC)
All rights reserved.
diff --git a/ply/lex.py b/ply/lex.py
index 744d554..3e240d1 100644
--- a/ply/lex.py
+++ b/ply/lex.py
@@ -1,7 +1,7 @@
# -----------------------------------------------------------------------------
# ply: lex.py
#
-# Copyright (C) 2001-2016
+# Copyright (C) 2001-2017
# David M. Beazley (Dabeaz LLC)
# All rights reserved.
#
diff --git a/ply/yacc.py b/ply/yacc.py
index 2c525ba..03bd86e 100644
--- a/ply/yacc.py
+++ b/ply/yacc.py
@@ -1,7 +1,7 @@
# -----------------------------------------------------------------------------
# ply: yacc.py
#
-# Copyright (C) 2001-2016
+# Copyright (C) 2001-2017
# David M. Beazley (Dabeaz LLC)
# All rights reserved.
#