]> granicus.if.org Git - python/commitdiff
bpo-12383: Also ignore __PYVENV_LAUNCHER__ (#3278)
authorNed Deily <nad@python.org>
Mon, 4 Sep 2017 04:00:21 +0000 (00:00 -0400)
committerGitHub <noreply@github.com>
Mon, 4 Sep 2017 04:00:21 +0000 (00:00 -0400)
Used in macOS framework builds.

Lib/test/test_subprocess.py

index 7d0708d5f7fe64a3f928e1b0ac7897dea8277170..a0d3dcd069a97f36456783af033a5efa3262259d 100644 (file)
@@ -651,6 +651,7 @@ class ProcessTestCase(BaseTestCase):
             # on adding even when the environment in exec is empty.
             # Gentoo sandboxes also force LD_PRELOAD and SANDBOX_* to exist.
             return ('VERSIONER' in n or '__CF' in n or  # MacOS
+                    '__PYVENV_LAUNCHER__' in n or # MacOS framework build
                     n == 'LD_PRELOAD' or n.startswith('SANDBOX') or # Gentoo
                     n == 'LC_CTYPE') # Locale coercion triggered