summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2015-04-24 09:07:32 -0500
committerDavid Beazley <dave@dabeaz.com>2015-04-24 09:07:32 -0500
commitcbea715bef497c3f1ecccf3be00c63755c6a5f2e (patch)
treea44040cd9b8d02b7a42bc18febd860c81c8d94ca /CHANGES
parent9b82bd0761afe0bf05040460137b68a2555c4eda (diff)
downloadply-cbea715bef497c3f1ecccf3be00c63755c6a5f2e.tar.gz
Fixed potential package problems with lextab and parsetab files
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES16
1 files changed, 16 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index c63d99d..08e4876 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,19 @@
+Version 3.6
+---------------------
+04/24/15: beazley
+ Fixed some problems related to use of packages and table file
+ modules. Just to emphasize, if you use a command such as this:
+
+ # lexer.py
+ parser = yacc.yacc(tabmodule='foo.bar.parsetab')
+
+ You need to make sure that the file 'lexer.py' is located at
+ foo/bar/lexer.py. If this is not the same location, then
+ you need to also include the outputdir option
+
+ parse = yacc.yacc(tabmodule='foo.bar.parsetab',
+ outputdir='foo/bar')
+
Version 3.5
---------------------
04/21/15: beazley