[issue14818] C implementation of ElementTree causes regressions

2012-05-17 Thread Ezio Melotti
Ezio Melotti added the comment: The attached patch adds support for keyword args to find, findtext, findall, and iterfind. iter and itertext don't seem to accept a namespace argument. The patch includes minimal tests. The name I used for the kwargs are the same of the Python version. The

[issue14818] C implementation of ElementTree causes regressions

2012-05-16 Thread Eli Bendersky
Eli Bendersky added the comment: Thanks for the report - such regressions are taken seriously and will be fixed. Ezio - you can go ahead and prepare a patch. I'm currently away from home (business trip) but I will look into it when I get back next weak. -- ___

[issue14818] C implementation of ElementTree causes regressions

2012-05-15 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue14818] C implementation of ElementTree causes regressions

2012-05-15 Thread Ezio Melotti
Ezio Melotti added the comment: As I wrote on the other issue: > It seems to me that namespaces are actually supported, but they are > accepted only as positional args and not keyword args, so this should > be easy to fix. I can prepare a patch unless someone else is faster than me.

[issue14818] C implementation of ElementTree causes regressions

2012-05-15 Thread Markus
New submission from Markus : The C implementation of ElementTree which is the default by python3.3 [1] does not accept the namespaces keyword for Element/ElementTree.find(all|iter|...) and maybe others. [1] http://bugs.python.org/issue13988 -- components: Library (Lib) messages: 1607