remove an unused callback in test
This commit is contained in:
parent
20fe56e03d
commit
7cd44d6886
|
@ -222,7 +222,7 @@ def test_disabled_with_group():
|
||||||
|
|
||||||
def make_description_callback():
|
def make_description_callback():
|
||||||
gcoption = ChoiceOption('name', 'GC name', ('ref', 'framework'), 'ref')
|
gcoption = ChoiceOption('name', 'GC name', ('ref', 'framework'), 'ref')
|
||||||
gcdummy = BoolOption('dummy', 'dummy', callback="toto")
|
gcdummy = BoolOption('dummy', 'dummy')
|
||||||
objspaceoption = ChoiceOption('objspace', 'Object space',
|
objspaceoption = ChoiceOption('objspace', 'Object space',
|
||||||
('std', 'thunk'), 'std')
|
('std', 'thunk'), 'std')
|
||||||
booloption = BoolOption('bool', 'Test boolean option', default=True)
|
booloption = BoolOption('bool', 'Test boolean option', default=True)
|
||||||
|
|
|
@ -79,6 +79,9 @@ class Values(object):
|
||||||
def __getitem__(self, opt):
|
def __getitem__(self, opt):
|
||||||
return self.getitem(opt)
|
return self.getitem(opt)
|
||||||
|
|
||||||
|
def get_modified_values(self):
|
||||||
|
return self._values
|
||||||
|
|
||||||
def getitem(self, opt, validate=True, force_permissive=False,
|
def getitem(self, opt, validate=True, force_permissive=False,
|
||||||
force_properties=None):
|
force_properties=None):
|
||||||
if opt in self._cache:
|
if opt in self._cache:
|
||||||
|
|
Loading…
Reference in New Issue