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 has been 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.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Config.init_libpath
only 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.match
will come from for most distro users. Both directories need to be used to determine if a module is part of the stdlib.The text was updated successfully, but these errors were encountered: