Python jinja2._stringdefs 模块,xid_start() 实例源码

我们从Python开源项目中,提取了以下26个代码示例,用于说明如何使用jinja2._stringdefs.xid_start()

项目:Sci-Finder    作者:snverse    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:Sci-Finder    作者:snverse    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:RPoint    作者:george17-meet    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:RealtimePythonChat    作者:quangtqag    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:Indushell    作者:SecarmaLabs    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:Liljimbo-Chatbot    作者:chrisjim316    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:flask_system    作者:prashasy    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:ShelbySearch    作者:Agentscreech    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:FileStoreGAE    作者:liantian-cn    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:python-group-proj    作者:Sharcee    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:islam-buddy    作者:hamir    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:PornGuys    作者:followloda    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:jieba-GAE    作者:liantian-cn    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:webapp    作者:superchilli    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:pipenv    作者:pypa    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:QualquerMerdaAPI    作者:tiagovizoto    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:gardenbot    作者:GoestaO    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:flask-zhenai-mongo-echarts    作者:Fretice    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:hate-to-hugs    作者:sdoran35    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:ieee-cs-txst    作者:codestar12    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:sam-s-club-auctions    作者:sameer2800    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:WhatTheHack    作者:Sylphias    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:WhatTheHack    作者:Sylphias    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:blog_flask    作者:momantai    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:flask    作者:bobohope    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.
项目:Chorus    作者:DonaldBough    | 项目源码 | 文件源码
def _make_name_re():
    try:
        compile('föö', '<unknown>', 'eval')
    except SyntaxError:
        return re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')

    import jinja2
    from jinja2 import _stringdefs
    name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
                                         _stringdefs.xid_continue))

    # Save some memory here
    sys.modules.pop('jinja2._stringdefs')
    del _stringdefs
    del jinja2._stringdefs

    return name_re

# we use the unicode identifier rule if this python version is able
# to handle unicode identifiers, otherwise the standard ASCII one.