This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients brycenesbitt, eli.bendersky, martin.panter, pocek, rhettinger, scoder
Date 2014-04-18.01:12:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397783528.74.0.617299187891.issue18304@psf.upfronthosting.co.za>
In-reply-to
Content
FWIW, I would like to have a way to ignore namespaces.

For many day-to-day problems (parsing Microsoft Excel
files saved in an XML format or parsing RSS feeds),
this would be a nice simplification.

I teach Python for a living and have found that it is
common for namespaces to be an obstacle for people
trying to get something done.

Giving them the following answer is unsatisfactory response to legitimate needs: 
"""
And it's pretty trivial to pre-process the entire tree by stripping all namespaces from it the intention is really to do namespace agnostic processing. However, in my experience, most people who want to do that haven't actually understood namespaces (although, admittedly, sometimes it's those who designed the XML format who didn't understand namespaces ...).
"""
History
Date User Action Args
2014-04-18 01:12:08rhettingersetrecipients: + rhettinger, scoder, eli.bendersky, martin.panter, brycenesbitt, pocek
2014-04-18 01:12:08rhettingersetmessageid: <1397783528.74.0.617299187891.issue18304@psf.upfronthosting.co.za>
2014-04-18 01:12:08rhettingerlinkissue18304 messages
2014-04-18 01:12:07rhettingercreate