We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d23f570 commit 145549fCopy full SHA for 145549f
Lib/test/test_sysconfig.py
@@ -651,9 +651,9 @@ def test_sysconfigdata_json(self):
651
system_config_vars = get_config_vars()
652
653
# Ignore keys in the check
654
- for key in ('projectbase', 'srcdir'):
655
- json_config_vars.pop(key)
656
- system_config_vars.pop(key)
+ for key in ('projectbase', 'srcdir', 'userbase'):
+ json_config_vars.pop(key, None)
+ system_config_vars.pop(key, None)
657
658
self.assertEqual(system_config_vars, json_config_vars)
659
0 commit comments