def getlower(char_ord, flags): import _cpython_sre return _cpython_sre.getlower(char_ord, flags)
def getlower(char_ord, flags): from build_capi import hint with hint("_cpython_sre"): import _cpython_sre return _cpython_sre.getlower(char_ord, flags)