diff options
author | Paul McGuire <ptmcg@users.noreply.github.com> | 2018-12-24 20:12:26 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-24 20:12:26 -0600 |
commit | 86c412dddfd785d16976d08b1c74c1eac466bfcb (patch) | |
tree | 20ed886e5eb20e37d7a776911fee8cb5c7723fa6 /pyparsing.py | |
parent | d5cce29645b3f25526313210485e5ce7096dec63 (diff) | |
parent | ccd7708b07f987d49ee76aa9b003f9e172808ff1 (diff) | |
download | pyparsing-git-86c412dddfd785d16976d08b1c74c1eac466bfcb.tar.gz |
Merge pull request #59 from jdufresne/psyco
Remove mentions of 'psyco' from docs and examples
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:: |