Home
last modified time | relevance | path

Searched refs:ignore_patterns (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/test/support/
D__init__.py1029 def set_match_tests(accept_patterns=None, ignore_patterns=None): argument
1035 if ignore_patterns is None:
1036 ignore_patterns = ()
1042 if ignore_patterns != _ignore_test_patterns:
1043 ignore_patterns, ignore_func = _compile_match_function(ignore_patterns)
1047 _ignore_test_patterns = tuple(ignore_patterns)
/third_party/python/Doc/library/
Dshutil.rst221 .. function:: ignore_patterns(*patterns)
259 process. :func:`ignore_patterns` can be used to create such a callable that
508 Another example that uses the :func:`ignore_patterns` helper::
510 from shutil import copytree, ignore_patterns
512 copytree(source, destination, ignore=ignore_patterns('*.pyc', 'tmp*'))
/third_party/python/Lib/test/
Dtest_support.py614 support.set_match_tests(ignore_patterns=[])
Dtest_shutil.py542 patterns = shutil.ignore_patterns('*.tmp', 'test_dir2')
551 patterns = shutil.ignore_patterns('*.tmp', 'subdir*')
/third_party/python/Lib/
Dshutil.py438 def ignore_patterns(*patterns): function
/third_party/python/Doc/whatsnew/
D2.6.rst2304 The :mod:`shutil` module also provides an :func:`ignore_patterns`
2305 function for use with this new parameter. :func:`ignore_patterns`
2313 ignore=shutil.ignore_patterns('*~', '.svn'))