]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commit
Thu May 17 00:55:09 BST 2012 Brian Warner <warner@lothar.com>
authorDaira Hopwood <daira@jacaranda.org>
Thu, 5 Sep 2013 16:53:39 +0000 (17:53 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Thu, 5 Sep 2013 16:53:39 +0000 (17:53 +0100)
commit93e5813b1b7f9ee20cfcdd0809b7ce12ad4b7738
tree479863226061810c8064071e829c5019016ddbfd
parent1ed8669faa36ced303c86aa95339aac26b352a0d
Thu May 17 00:55:09 BST 2012  Brian Warner <warner@lothar.com>
  * dictutil.DictOfSets: remove .union() method, it was misleading

  Unlike set.union(), which returns a new set, DictOfSets.union() modified
  the DictOfSets in-place. The name collision bit me when I changed some
  code from using DictOfSets to a normal set, and expected that
  set.union() would modify the set in-place. Since there was only one user
  of DictOfSets.union, I figured it was safer to just get rid of it.
src/allmydata/test/test_util.py
src/allmydata/util/dictutil.py