summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2012-12-25 05:40:39 -0800
committerEli Bendersky <eliben@gmail.com>2012-12-25 05:40:39 -0800
commit1335d295465a5feb83dc9a61f63fc7bb0f58cea7 (patch)
tree83a665ab894968d4ec5e18bfd4497b9f3337d0af /README.rst
parent0d0b4d5b4886f2739f468862412fcf74f4d60bd6 (diff)
downloadpycparser-1335d295465a5feb83dc9a61f63fc7bb0f58cea7.tar.gz
remove mention of needing to install PLY
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 3e48630..71b0f51 100644
--- a/README.rst
+++ b/README.rst
@@ -63,7 +63,6 @@ Prerequisites
-------------
* ``pycparser`` was tested on Python 2.6, 2.7 and 3.2, on both Linux and Windows. It should work on any later version (in both the 2.x and 3.x lines) as well.
-* ``pycparser`` uses the PLY module for the actual lexer and parser construction. Install PLY from `its website <http://www.dabeaz.com/ply/>`_.
Installation process
--------------------
@@ -74,7 +73,7 @@ Alternatively, since ``pycparser`` is listed in the `Python Package Index <http:
> pip install pycparser
-It's recommended to run ``_build_tables.py`` in the ``pycparser`` code directory after installation to make sure the parsing tables of PLY are pre-generated. This can make your code run faster.
+It's recommended to run ``_build_tables.py`` in the ``pycparser`` code directory after installation to make sure the parsing tables are pre-generated. This can make your code run faster.
Known problems
--------------