[issue3409] ElementPath.Path.findall problem with unicode input

2010-03-30 Thread Florent Xicluna
Changes by Florent Xicluna : -- priority: -> normal resolution: -> out of date stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue3409] ElementPath.Path.findall problem with unicode input

2010-03-30 Thread Neil Muller
Neil Muller added the comment: With the recent ElementTree changes on trunk, this bug no longer applies, AFAICS. -- nosy: +Neil Muller, flox ___ Python tracker ___ _

[issue3409] ElementPath.Path.findall problem with unicode input

2008-07-22 Thread Fredrik Lundh
Fredrik Lundh <[EMAIL PROTECTED]> added the comment: Hmm. That's embarrassing. What was I thinking? Guess it's time to update the 2.X codebase to ET 1.2.8. ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3409] ElementPath.Path.findall problem with unicode input

2008-07-21 Thread Amaury Forgeot d'Arc
Changes by Amaury Forgeot d'Arc <[EMAIL PROTECTED]>: -- assignee: -> effbot nosy: +effbot ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3409] ElementPath.Path.findall problem with unicode input

2008-07-18 Thread Uwe Hoffmann
New submission from Uwe Hoffmann <[EMAIL PROTECTED]>: if you call Element.findall(u"...") some silent errors can occure because of the isinstance(,type("")) check. I'm not sure if it is even allowed to call findall with a unicode parameter. The attached diff solves *my* problem. ---