mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-12383: Also ignore __PYVENV_LAUNCHER__ (#3278)
Used in macOS framework builds.
This commit is contained in:
parent
4f013881cb
commit
918edc0edb
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue