From 7973f472d70356d988687e4d0b6630111877c9f2 Mon Sep 17 00:00:00 2001 From: hpk Date: Sun, 11 Feb 2007 19:43:34 +0100 Subject: [PATCH] [svn r38505] clarify that config.getvalue will first lookup in options. --HG-- branch : trunk --- py/test/config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/py/test/config.py b/py/test/config.py index 3ca1ecb12..3c0c2b0dc 100644 --- a/py/test/config.py +++ b/py/test/config.py @@ -120,8 +120,9 @@ class Config(object): return self.option def getvalue(self, name, path=None): - """ return 'name' value looked up from the first conftest file - found up the path (including the path itself). + """ return 'name' value looked up from the 'options' + and then from the first conftest file found up + the path (including the path itself). if path is None, lookup the value in the initial conftest modules found during command line parsing. """