]> granicus.if.org Git - python/commitdiff
subprocess test_empty_env typo fix. (#1877)
authorGregory P. Smith <greg@krypto.org>
Tue, 30 May 2017 23:21:47 +0000 (16:21 -0700)
committerGitHub <noreply@github.com>
Tue, 30 May 2017 23:21:47 +0000 (16:21 -0700)
Lib/test/test_subprocess.py

index cf6ee9cb638288c59a71698d3f1f4340bde0f9f6..7fabe6ad7653326ca19e081a3dc580f658f3d85c 100644 (file)
@@ -636,13 +636,13 @@ class ProcessTestCase(BaseTestCase):
     def test_empty_env(self):
         """Verify that env={} is as empty as possible."""
 
-        def is_env_var_to_ignore(var_name):
+        def is_env_var_to_ignore(n):
             """Determine if an environment variable is under our control."""
             # This excludes some __CF_* and VERSIONER_* keys MacOS insists
             # on adding even when the environment in exec is empty.
             # Gentoo sandboxes also force LD_PRELOAD and SANDBOX_* to exist.
-            return ('VERSIONER' in k or '__CF' in k or  # MacOS
-                    k == 'LD_PRELOAD' or k.startswith('SANDBOX'))  # Gentoo
+            return ('VERSIONER' in n or '__CF' in n or  # MacOS
+                    n == 'LD_PRELOAD' or n.startswith('SANDBOX'))  # Gentoo
 
         with subprocess.Popen([sys.executable, "-c",
                                'import os; print(list(os.environ.keys()))'],