diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-09-06 18:50:00 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-09-06 18:50:00 (GMT) |
commit | b0478b3f5fb4db47b7f924ef57fa5aa38600f0bd (patch) | |
tree | fa5da739130e2f1739fcd70ff0424e07a1207cd2 /Lib/test/test_support.py | |
parent | 4a0430166bdf9afd04b9e6bd00f43080bc57d00b (diff) | |
download | cpython-b0478b3f5fb4db47b7f924ef57fa5aa38600f0bd.zip cpython-b0478b3f5fb4db47b7f924ef57fa5aa38600f0bd.tar.gz cpython-b0478b3f5fb4db47b7f924ef57fa5aa38600f0bd.tar.bz2 |
Issue #18623: Factor out the _SuppressCoreFiles context manager into test.support.
Patch by Valerie Lambert.
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r-- | Lib/test/test_support.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 4edb1a8..9afc1d0 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -306,6 +306,7 @@ class TestSupport(unittest.TestCase): # args_from_interpreter_flags # can_symlink # skip_unless_symlink + # SuppressCoreFiles def test_main(): |