> I'm experimenting with rpc_python, You mean RpcPython, the qooxdoo-contrib, right?!
> and simplejson and I seem to have run > into a problem. In rpc_python file json.py, the lines: > > from simplejson import ANYTHING > from simplejson import Scanner, pattern There is no such code, but you might be refering to 150 from simplejson.decoder import ANYTHING 151 from simplejson.scanner import Scanner, pattern In fact, this seems to be relying on an outdated API of simplejson (e.g. from simplejson version 1.7). > > all fail even though simplejson is installed. Easy install picks up > version 2.1.2. at the moment. Because I don't have cjson (and can't use it > unfortunately , I need a pure python solution) the server fails to start. You either have to install an older version of simplejson (e.g. 1.7). Or someone needs to re-write the RpcPython code to use the new API. T. ------------------------------------------------------------------------------ Learn how Oracle Real Application Clusters (RAC) One Node allows customers to consolidate database storage, standardize their database environment, and, should the need arise, upgrade to a full multi-node Oracle RAC database without downtime or disruption http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
