diff options
author | Victor Stinner <vstinner@python.org> | 2019-12-08 07:38:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-08 07:38:16 (GMT) |
commit | 6cac1136665b70f72db291b95876d7affcf1d2db (patch) | |
tree | baf9af65677cacb92ec5d10d8567e90bf8246b17 /Lib/test/test_support.py | |
parent | 2b7de6696bf2f924cd2cd9ff0a539c8aa37c6244 (diff) | |
download | cpython-6cac1136665b70f72db291b95876d7affcf1d2db.zip cpython-6cac1136665b70f72db291b95876d7affcf1d2db.tar.gz cpython-6cac1136665b70f72db291b95876d7affcf1d2db.tar.bz2 |
bpo-38991: Remove test.support.strip_python_stderr() (GH-17490)
test.support: run_python_until_end(), assert_python_ok() and
assert_python_failure() functions no longer strip whitespaces from
stderr.
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r-- | Lib/test/test_support.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index e3ce670..eb27c0c 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -653,7 +653,6 @@ class TestSupport(unittest.TestCase): # run_doctest # threading_cleanup # reap_threads - # strip_python_stderr # can_symlink # skip_unless_symlink # SuppressCrashReport |