We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4c8c14 commit ae0da9eCopy full SHA for ae0da9e
pyperf/_collect_metadata.py
@@ -106,11 +106,11 @@ def collect_python_metadata(metadata):
106
if cflags:
107
cflags = normalize_text(cflags)
108
metadata['python_cflags'] = cflags
109
-
110
- config_flags = sysconfig.get_config_var('CONFIG_ARGS')
111
- if config_flags:
112
- config_flags = normalize_text(config_flags)
113
- metadata['python_config_args'] = config_flags
+
+ config_args = sysconfig.get_config_var('CONFIG_ARGS')
+ if config_args:
+ config_args = normalize_text(config_args)
+ metadata['python_config_args'] = config_args
114
115
# GC disabled?
116
try:
0 commit comments