general: get rid of example_config & use demo/stub my.config instead

This commit is contained in:
Dima Gerasimov 2020-10-31 05:11:03 +00:00 committed by karlicoss
parent 96be32aa51
commit 1849a66f08
10 changed files with 27 additions and 34 deletions

View file

@ -21,12 +21,9 @@ def modules() -> Iterable[HPIModule]:
def ignored(m: str) -> bool:
excluded = [
# legacy stuff left for backwards compatibility
'core.*',
'config.*',
## todo move these to core
'kython.*',
'mycfg_stub',
##
]
exs = '|'.join(excluded)
return re.match(f'^my.({exs})$', m) is not None