[issue25040] xml.sax.make_parser makes bad use of parser_list argument default value

2015-11-26 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> not a bug stage: -> resolved status: pending -> closed ___ Python tracker ___

[issue25040] xml.sax.make_parser makes bad use of parser_list argument default value

2015-10-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: open -> pending ___ Python tracker ___ ___

[issue25040] xml.sax.make_parser makes bad use of parser_list argument default value

2015-09-09 Thread Gautier Portet
New submission from Gautier Portet: When using xml.sax.make_parser(), there is a potential problem with the parser_list default value. If another module used a default value, like the problematic parser from PyXML, your module will also use it as default parser. You should change this: def

[issue25040] xml.sax.make_parser makes bad use of parser_list argument default value

2015-09-09 Thread R. David Murray
R. David Murray added the comment: Can you explain how this manifests? make_parser neither mutates the list nor returns it, so I don't see how this is a bug. -- nosy: +r.david.murray ___ Python tracker