summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2017-04-13 09:56:41 -0500
committerDavid Beazley <dave@dabeaz.com>2017-04-13 09:56:41 -0500
commitb791b089b7d368592838ebbb8172fecc74001816 (patch)
treeb403d3efba4f59b7ecb73698f11702b9570c90ca /doc
parent43fe6fc76e5cf2003a36e4053b13ac425f2634d6 (diff)
downloadply-b791b089b7d368592838ebbb8172fecc74001816.tar.gz
Bump version
Diffstat (limited to 'doc')
-rw-r--r--doc/internal.html2
-rw-r--r--doc/ply.html7
2 files changed, 6 insertions, 3 deletions
diff --git a/doc/internal.html b/doc/internal.html
index f73bc43..57e87df 100644
--- a/doc/internal.html
+++ b/doc/internal.html
@@ -12,7 +12,7 @@ dave@dabeaz.com<br>
</b>
<p>
-<b>PLY Version: 3.10</b>
+<b>PLY Version: 3.11</b>
<p>
<!-- INDEX -->
diff --git a/doc/ply.html b/doc/ply.html
index 48ccdcb..b54854a 100644
--- a/doc/ply.html
+++ b/doc/ply.html
@@ -12,7 +12,7 @@ dave@dabeaz.com<br>
</b>
<p>
-<b>PLY Version: 3.10</b>
+<b>PLY Version: 3.11</b>
<p>
<!-- INDEX -->
@@ -1438,10 +1438,13 @@ well as for input text.
<blockquote>
<pre>
-lex.lex(reflags=re.UNICODE)
+lex.lex(reflags=re.UNICODE | re.VERBOSE)
</pre>
</blockquote>
+Note: by default, <tt>reflags</tt> is set to <tt>re.VERBOSE</tt>. If you provide
+your own flags, you may need to include this for PLY to preserve its normal behavior.
+
<p>
<li>Since the lexer is written entirely in Python, its performance is
largely determined by that of the Python <tt>re</tt> module. Although