diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2021-07-07 21:47:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 21:47:50 (GMT) |
commit | 052930f2416323ca0488b86baad7944d62e79e7f (patch) | |
tree | 5da3ea608ceed6523edd99cc8fc1a0555fd6118e /Lib/test/test_marshal.py | |
parent | 4823d9a51281ebbc8e8d82a0dd3edc7d13ea8ac7 (diff) | |
download | cpython-052930f2416323ca0488b86baad7944d62e79e7f.zip cpython-052930f2416323ca0488b86baad7944d62e79e7f.tar.gz cpython-052930f2416323ca0488b86baad7944d62e79e7f.tar.bz2 |
Remove __cleanenv from PEP-657 tests (GH-27060)
Diffstat (limited to 'Lib/test/test_marshal.py')
-rw-r--r-- | Lib/test/test_marshal.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py index 152301f..d20b9d2 100644 --- a/Lib/test/test_marshal.py +++ b/Lib/test/test_marshal.py @@ -148,8 +148,7 @@ class CodeTestCase(unittest.TestCase): marshal.dump(co, f) assert_python_ok('-X', 'no_debug_ranges', - '-c', code, os_helper.TESTFN, - __cleanenv=True) + '-c', code, os_helper.TESTFN) finally: os_helper.unlink(os_helper.TESTFN) |