示例#1
0
def getlower(char_ord, flags):
    import _cpython_sre
    return _cpython_sre.getlower(char_ord, flags)
示例#2
0
def getlower(char_ord, flags):
    from build_capi import hint
    with hint("_cpython_sre"):
        import _cpython_sre
    return _cpython_sre.getlower(char_ord, flags)