mercurial/__init__.py
author Nicolas Dumazet <nicdumz.commits@gmail.com>
Fri, 08 May 2009 16:28:52 +0900
changeset 8384 483d9b2103da
parent 0 9117c6561b0b
child 27220 4374d819ccd5
permissions -rw-r--r--
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.