コード例 #1
0
ファイル: _sre.py プロジェクト: zolstein/graalpython
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)