Compare two XML strings in Python
I had to compare two XML strings for some unit tests, and if you want to do it without considering the indentation, or the newlines, it is a little bit tricky.I thought that parsing the original xml and returning it again (using minidom), I'd got...