pep8
This commit is contained in:
parent
eb632c002d
commit
8be48e5eba
|
@ -67,7 +67,7 @@ class Config(object):
|
||||||
self._cfgimpl_toplevel = self._cfgimpl_get_toplevel()
|
self._cfgimpl_toplevel = self._cfgimpl_get_toplevel()
|
||||||
# some api members shall not be used as option's names !
|
# some api members shall not be used as option's names !
|
||||||
methods = getmembers(self, ismethod)
|
methods = getmembers(self, ismethod)
|
||||||
self._cfgimpl_slots = [key for key, value in methods \
|
self._cfgimpl_slots = [key for key, value in methods
|
||||||
if not key.startswith("_")]
|
if not key.startswith("_")]
|
||||||
self._cfgimpl_build()
|
self._cfgimpl_build()
|
||||||
|
|
||||||
|
@ -325,6 +325,7 @@ class Config(object):
|
||||||
def get_warnings(self):
|
def get_warnings(self):
|
||||||
"Config implements its own warning pile"
|
"Config implements its own warning pile"
|
||||||
return self._cfgimpl_get_toplevel()._cfgimpl_warnings
|
return self._cfgimpl_get_toplevel()._cfgimpl_warnings
|
||||||
|
|
||||||
# ____________________________________________________________
|
# ____________________________________________________________
|
||||||
def getkey(self):
|
def getkey(self):
|
||||||
return self._cfgimpl_descr.getkey(self)
|
return self._cfgimpl_descr.getkey(self)
|
||||||
|
@ -341,6 +342,7 @@ class Config(object):
|
||||||
def __ne__(self, other):
|
def __ne__(self, other):
|
||||||
"Config comparison"
|
"Config comparison"
|
||||||
return not self == other
|
return not self == other
|
||||||
|
|
||||||
# ______________________________________________________________________
|
# ______________________________________________________________________
|
||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
"""Pythonesque way of parsing group's ordered options.
|
"""Pythonesque way of parsing group's ordered options.
|
||||||
|
|
Loading…
Reference in New Issue