Exemplo n.º 1
0
def getlower(char_ord, flags):
    import _cpython_sre
    return _cpython_sre.getlower(char_ord, flags)
Exemplo n.º 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)