You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 9, 2024. It is now read-only.
Config.init_libpath only looks at sysconfig.get_python_lib() (usually /usr/lib/), and doesnt include sysconfig.get_python_lib(plat_specific=True) , which is usually /usr/lib64. The later is where re.match will come from for most distro users. Both directories need to be used to determine if a module is part of the stdlib.
Config.init_libpathonly looks atsysconfig.get_python_lib()(usually/usr/lib/), and doesnt includesysconfig.get_python_lib(plat_specific=True), which is usually/usr/lib64. The later is wherere.matchwill come from for most distro users. Both directories need to be used to determine if a module is part of the stdlib.