Re: [Python-3000] [Python-Dev] PEP 361: Python 2.6/3.0 release schedule

2008-03-19 Thread John Millikin
> Possible features for 2.6 > New modules in the standard library: > - JSON implementation > Have there been any plans made for which one? All of the implementations I'm aware of (cjson, simplejson, jsonlib, demjson, python-json) have serious issues that in my opinion should be fixed be

Re: [Python-3000] raw strings and \u

2008-04-05 Thread John Millikin
If this is the case, could the regex library be modified to support \u and \U escapes as suggested by Martin v. Löwis[1]? Otherwise, the only way to use non-ASCII characters in a regex will be to avoid raw strings. [1] http://mail.python.org/pipermail/python-dev/2007-May/073074.html __