当前位置: 首页>>代码示例>>Python>>正文


Python _speedups.escape函数代码示例

本文整理汇总了Python中markupsafe._speedups.escape函数的典型用法代码示例。如果您正苦于以下问题:Python escape函数的具体用法?Python escape怎么用?Python escape使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了escape函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: login

def login():
    """ Login
    """
    if request.method == 'POST':
        if request.form['username'] and request.form['password']:
            import config

            if config.USERNAME == escape(request.form['username'])\
            and config.PASSWORD == escape(request.form['password']):
                session['username'] = escape(request.form['username'])

                return redirect(url_for('admin'))

    return '''
开发者ID:ewok,项目名称:portfolio-flask,代码行数:14,代码来源:validate.py

示例2: escape

 def escape(cls, s):
     """Escape the string.  Works like :func:`escape` with the difference
     that for subclasses of :class:`Markup` this function would return the
     correct subclass.
     """
     rv = escape(s)
     if rv.__class__ is not cls:
         return cls(rv)
     return rv
开发者ID:mredar,项目名称:markupsafe,代码行数:9,代码来源:__init__.py

示例3: _escape_argspec

def _escape_argspec(obj, iterable):
    """Helper for various string-wrapped functions."""
    for key, value in iterable:
        if hasattr(value, '__html__') or isinstance(value, basestring):
            obj[key] = escape(value)
    return obj
开发者ID:tavisrudd,项目名称:dss_cython_libs,代码行数:6,代码来源:_make_unicode_meth_wrapper.py

示例4: __radd__

 def __radd__(self, other):
     if hasattr(other, '__html__') or isinstance(other, basestring):
         return self.__class__(unicode(escape(other)) + unicode(self))
     return NotImplemented
开发者ID:alex,项目名称:markupsafe,代码行数:4,代码来源:__init__.py

示例5: rpartition

 def rpartition(self, sep):
     return tuple(map(self.__class__,
                      unicode.rpartition(self, escape(sep))))
开发者ID:alex,项目名称:markupsafe,代码行数:3,代码来源:__init__.py

示例6: partition

 def partition(self, sep):
     return tuple(map(self.__class__,
                      str.partition(self, escape(sep))))
开发者ID:TTChangeTheWorld,项目名称:lksh_parallel_page,代码行数:3,代码来源:__init__.py


注:本文中的markupsafe._speedups.escape函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。