How to use the markupsafe._compat.text_type.__repr__ function in MarkupSafe

To help you get started, we’ve selected a few MarkupSafe examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github rethinkdb / rethinkdb / test / common / http_support / markupsafe / __init__.py View on Github external
def __repr__(self):
        return '%s(%s)' % (
            self.__class__.__name__,
            text_type.__repr__(self)
        )
github commaai / openpilot / markupsafe / __init__.py View on Github external
def __repr__(self):
        return '%s(%s)' % (
            self.__class__.__name__,
            text_type.__repr__(self)
        )
github janeczku / calibre-web / vendor / markupsafe / __init__.py View on Github external
def __repr__(self):
        return '%s(%s)' % (
            self.__class__.__name__,
            text_type.__repr__(self)
        )
github libfirm / libfirm / scripts / markupsafe / __init__.py View on Github external
def __repr__(self):
        return '%s(%s)' % (
            self.__class__.__name__,
            text_type.__repr__(self)
        )
github wwqgtxx / wwqLyParse / wwqLyParse / lib / flask_lib / markupsafe / __init__.py View on Github external
def __repr__(self):
        return '%s(%s)' % (
            self.__class__.__name__,
            text_type.__repr__(self)
        )
github trailofbits / cb-multios / cqe-challenges / NRFIN_00007 / support / mixcodegen / markupsafe / __init__.py View on Github external
def __repr__(self):
        return '%s(%s)' % (
            self.__class__.__name__,
            text_type.__repr__(self)
        )
github tranquilit / WAPT / lib / site-packages / markupsafe / __init__.py View on Github external
def __repr__(self):
        return '%s(%s)' % (
            self.__class__.__name__,
            text_type.__repr__(self)
        )