From: Zac Medico Date: Tue, 27 Nov 2007 02:08:53 +0000 (-0000) Subject: Fix config.pop() so that is will properly raise a KeyError. (trunk r8704) X-Git-Tag: v2.1.4~192 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=31c4e5832a8dc79fdba7308459444fd654a104e4;p=portage.git Fix config.pop() so that is will properly raise a KeyError. (trunk r8704) svn path=/main/branches/2.1.2/; revision=8705 --- diff --git a/pym/portage.py b/pym/portage.py index a9fe9fc9f..9e5b1bed5 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -2420,11 +2420,18 @@ class config: return d[k] return x - def pop(self, k, x=None): - self.modifying() - v = x + def pop(self, key, *args): + if len(args) > 1: + raise TypeError( + "pop expected at most 2 arguments, got " + \ + repr(1 + len(args))) + v = self for d in reversed(self.lookuplist): - v = d.pop(k, v) + v = d.pop(key, v) + if v is self: + if args: + return args[0] + raise KeyError(key) return v def has_key(self,mykey):