summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenn Knowles <kenn.knowles@gmail.com>2013-05-29 12:03:43 -0300
committerKenn Knowles <kenn.knowles@gmail.com>2013-05-29 12:03:43 -0300
commit9a05daf81960092af081383d60269f2df221c8d3 (patch)
tree206e27559b070bbc855b32022156af724c4e6f7c
parent1a8e021d55129f7fbaf19a5517cc2dae50fc26b4 (diff)
downloadjsonpath-rw-9a05daf81960092af081383d60269f2df221c8d3.tar.gz
Update README.md
-rw-r--r--README.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/README.md b/README.md
index ba94760..7113ed7 100644
--- a/README.md
+++ b/README.md
@@ -52,7 +52,6 @@ $ python
>>> jsonpath_expr_direct = Fields('foo').child(Slice('*')).child(Fields('baz')) # This is equivalent
```
-
JSONPath Syntax
---------------
@@ -151,6 +150,12 @@ The original proposal, as far as I know:
* [JSONPath - XPath for JSON](http://goessner.net/articles/JSONPath/) by Stefan Goessner.
+Special note about PLY and docstrings
+-------------------------------------
+
+The main parsing toolkit underlying this library, [PLY](https://github.com/dabeaz/ply), does not work with
+docstrings removed. For example, `PYTHONOPTIMIZE=2` and `python -OO` will both cause a failure.
+
Contributors
------------