-
Here's what I'm getting with a fresh install of python2.4 and python2.4-dev on Ubuntu Jaunty. Looks like it's dying on some new exception syntax.
catherine@cordelia:~/dev/setuptools-0.6c9$ sudo easy_install-2.4 pyparsing
Searching for pyparsing
Reading http://pypi.python.org/simple/pyparsing/
Reading http://pyparsing.wikispaces.com/
Download error: (-2, 'Name or service not known') --...
2009-05-13 03:51:17 UTC in Python parsing module
-
catherinedevlin added ivmx to the sqlWrap.py project.
2009-02-05 00:18:16 UTC in sqlWrap.py
-
I might be the first person to ever equality-test pyparsing grammars, but I need to for pyparsing_helper to work right, and it looks like ParserElement.__eq__ wasn't written to support that.
[[code]]
In [41]: Literal('a') == "a"
Out[41]: True
In [42]: Literal('a') == Literal('a')
Out[42]: False
A minor change to ParserElement.__eq__ will fix that.
2009-01-14 18:11:48 UTC in Python parsing module
-
In pyparsing 1.5.1, when I use .ignore() on a SkipTo, the ignored content is usually preserved in the result. (This is the behavior I expect.)
>>> print SkipTo(';').ignore(dblQuotedString).parseString('a "b c;" d e; f').dump()
['a "b c;" d e']
However, if the ignored content comes at the beginning of the string being parsed, then it is not only ignored but also omitted from the result.
2008-12-09 18:00:33 UTC in Python parsing module
-
catherinedevlin registered the python-cmd2 project.
2008-01-04 21:07:10 UTC in python-cmd2
-
When installing cx_Oracle on a *nix machine with Oracle XE, the following error is generated:
error in cx_Oracle setup command: Oracle home does not refer to an 8i, 9i, 10g or 11g installation
... because Oracle XE does not install the files (libclientNN.a) which setup.py relies on to determine Oracle version. A simple patch for setup.py is attached to fix that.
2007-10-09 17:08:19 UTC in cx_Oracle
-
catherinedevlin registered the sqlWrap.py project.
2006-05-17 12:05:34 UTC in sqlWrap.py