inotify: dic.setdefault(k, d) ; v = dic[k] --> v = dic.setdefault(k, d)
dict.setdefault sets a default value, but also returns the dict.get result.
Getting the value on the next instruction was redundant.
inotify: server.walk(): use yield instead of for
iterate on subdir when the directory is found, not
once all the directories are found, since yield order doesn't matter
highlight: updated changed test output
It was changed in
783c8c78db86, but I forgot to update it.
byterange: fix import error
We must import the module as email.Utils on case-sensitive
filesystems.