Comment Re: Anti-open-source bias (Score 1) 121
This is turning things around the problem wasn't Python, it was a buggy code (author assumed the output is sorted abd due to that bug wrong files were compared together).
Python documentation clearly states in the documentation that order of the output of glob.glob() depends on the OS and and there are no guarantees about the order.
I suppose you could argue that Python could be idiot proof and sort the output, but then why make O(n) call a O(n log n) when most of the times people don't need output sorted.