gh-127873: Only check sys.flags.ignore_environment for PYTHON* env vars (#127877)

This commit is contained in:
Hugo van Kemenade 2025-01-21 18:10:08 +02:00 committed by GitHub
parent 13475e0a5a
commit 05d12eecbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 94 additions and 65 deletions

View file

@ -1465,6 +1465,7 @@ class ExceptionTests(unittest.TestCase):
@cpython_only
@unittest.skipIf(_testcapi is None, "requires _testcapi")
@force_not_colorized
def test_recursion_normalizing_infinite_exception(self):
# Issue #30697. Test that a RecursionError is raised when
# maximum recursion depth has been exceeded when creating
@ -2180,6 +2181,7 @@ class AssertionErrorTests(unittest.TestCase):
self.assertEqual(result[-len(expected):], expected)
@support.force_not_colorized_test_class
class SyntaxErrorTests(unittest.TestCase):
maxDiff = None