Skip to content

Commit 084deac

Browse files
committed
Fix key name
1 parent 1ee8230 commit 084deac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/sysconfig/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def _init_non_posix(vars):
409409
vars.update(_sysconfig.config_vars())
410410

411411
# Add an underscore to the `d` flag. E.g, `td` -> `t_d`, `d` -> `_d`.
412-
vars['Py_DEBUG'] = vars['Py_DEBUG'].replace('d', '_d')
412+
vars['ABIFLAGS'] = vars['ABIFLAGS'].replace('d', '_d')
413413

414414
vars['LIBDIR'] = _safe_realpath(os.path.join(get_config_var('installed_base'), 'libs'))
415415
if hasattr(sys, 'dllhandle'):

0 commit comments

Comments
 (0)