Lines Matching refs:quiet
446 def temp_dir(path=None, quiet=False):
454 quiet: if False (the default), the context manager raises an exception
470 if not quiet:
487 def change_cwd(path, quiet=False):
494 quiet: if False (the default), the context manager raises an exception
503 if not quiet:
515 def temp_cwd(name='tempcwd', quiet=False):
524 If *quiet* is False (default) and it is not possible to
525 create or change the CWD, an error is raised. If *quiet* is True,
529 with temp_dir(path=name, quiet=quiet) as temp_path:
530 with change_cwd(temp_path, quiet=quiet) as cwd_dir: