pyPEG 0.30 fixes bug with skipWS=False
You can use this patch or download the new version from the pyPEG homepage.
--- pyPEG.py-0.29 2009-04-30 14:41:33.000000000 +0200
+++ pyPEG.py 2009-05-02 08:22:49.000000000 +0200
@@ -1,4 +1,4 @@
-# YPL parser 0.29
+# YPL parser 0.30
# written by VB.
@@ -71,6 +71,8 @@
if skipWS:
text = textline.strip()
+ else:
+ text = textline
if inputLength:
position = inputLength - len(text) - 1
publiziert Sat, 02 May 2009 08:30:43 +0200