(s)
| 666 | _exec_prefix = sysconfig.get_path("platstdlib") |
| 667 | |
| 668 | def parse_ignore_dir(s): |
| 669 | s = os.path.expanduser(os.path.expandvars(s)) |
| 670 | s = s.replace('$prefix', _prefix).replace('$exec_prefix', _exec_prefix) |
| 671 | return os.path.normpath(s) |
| 672 | |
| 673 | opts.ignore_module = [mod.strip() |
| 674 | for i in opts.ignore_module for mod in i.split(',')] |
no test coverage detected