[mod_python] something about re.findall output

Graham Dumpleton graham.dumpleton at gmail.com
Fri Jun 29 07:03:42 EDT 2007


This is not a general Python mailing list, but is dedicated to
mod_python, the Python module for Apache. If you are lucky, someone
may respond, but you are better off posting at:

  http://groups.google.com/group/comp.lang.python/topics?hl=en

instead.

Graham

On 29/06/07, ziapannocchia at gmail.com <ziapannocchia at gmail.com> wrote:
> >>> re.findall("[^a-z]",'ç')
> ['\xc3', '\xa7']
> >>> re.findall("[^a-zA]",'ç')
> ['\xc3', '\xa7']
> >>> re.findall("[^a-zà]",'ç')
> ['\xa7']
>
> Why?
>
> _______________________________________________
> Mod_python mailing list
> Mod_python at modpython.org
> http://mailman.modpython.org/mailman/listinfo/mod_python
>



More information about the Mod_python mailing list