diff options
Diffstat (limited to 'pyparsing.py')
-rw-r--r-- | pyparsing.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/pyparsing.py b/pyparsing.py index aa1b993..945c51d 100644 --- a/pyparsing.py +++ b/pyparsing.py @@ -1677,11 +1677,9 @@ class ParserElement(object): This speedup may break existing programs that use parse actions that have side-effects. For this reason, packrat parsing is disabled when you first import pyparsing. To activate the packrat feature, your - program must call the class method :class:`ParserElement.enablePackrat`. If - your program uses ``psyco`` to "compile as you go", you must call - ``enablePackrat`` before calling ``psyco.full()``. If you do not do this, - Python will crash. For best results, call ``enablePackrat()`` immediately - after importing pyparsing. + program must call the class method :class:`ParserElement.enablePackrat`. + For best results, call ``enablePackrat()`` immediately after + importing pyparsing. Example:: |