Python jinja2._compat 模块,BytesIO() 实例源码

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

项目:Flask_Blog    作者:sugarguo    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:Flask_Blog    作者:sugarguo    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:swjtu-pyscraper    作者:Desgard    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:swjtu-pyscraper    作者:Desgard    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:zanph    作者:zanph    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:zanph    作者:zanph    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:Sci-Finder    作者:snverse    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:Sci-Finder    作者:snverse    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:Sci-Finder    作者:snverse    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:Sci-Finder    作者:snverse    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:Texty    作者:sarthfrey    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:Texty    作者:sarthfrey    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:RPoint    作者:george17-meet    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:RPoint    作者:george17-meet    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:isni-reconcile    作者:cmh2166    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:isni-reconcile    作者:cmh2166    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def test_extract(self):
        from jinja2.ext import babel_extract
        source = BytesIO('''
        {{ gettext('Hello World') }}
        {% trans %}Hello World{% endtrans %}
        {% trans %}{{ users }} user{% pluralize %}{{ users }} users{% endtrans %}
        '''.encode('ascii')) # make python 3 happy
        assert list(babel_extract(source, ('gettext', 'ngettext', '_'), [], {})) == [
            (2, 'gettext', u'Hello World', []),
            (3, 'gettext', u'Hello World', []),
            (4, 'ngettext', (u'%(users)s user', u'%(users)s users', None), [])
        ]
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def test_comment_extract(self):
        from jinja2.ext import babel_extract
        source = BytesIO('''
        {# trans first #}
        {{ gettext('Hello World') }}
        {% trans %}Hello World{% endtrans %}{# trans second #}
        {#: third #}
        {% trans %}{{ users }} user{% pluralize %}{{ users }} users{% endtrans %}
        '''.encode('utf-8')) # make python 3 happy
        assert list(babel_extract(source, ('gettext', 'ngettext', '_'), ['trans', ':'], {})) == [
            (3, 'gettext', u'Hello World', ['first']),
            (4, 'gettext', u'Hello World', ['second']),
            (6, 'ngettext', (u'%(users)s user', u'%(users)s users', None), ['third'])
        ]
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:oa_qian    作者:sunqb    | 项目源码 | 文件源码
def test_extract(self):
        from jinja2.ext import babel_extract
        source = BytesIO('''
        {{ gettext('Hello World') }}
        {% trans %}Hello World{% endtrans %}
        {% trans %}{{ users }} user{% pluralize %}{{ users }} users{% endtrans %}
        '''.encode('ascii')) # make python 3 happy
        assert list(babel_extract(source, ('gettext', 'ngettext', '_'), [], {})) == [
            (2, 'gettext', u'Hello World', []),
            (3, 'gettext', u'Hello World', []),
            (4, 'ngettext', (u'%(users)s user', u'%(users)s users', None), [])
        ]
项目:oa_qian    作者:sunqb    | 项目源码 | 文件源码
def test_comment_extract(self):
        from jinja2.ext import babel_extract
        source = BytesIO('''
        {# trans first #}
        {{ gettext('Hello World') }}
        {% trans %}Hello World{% endtrans %}{# trans second #}
        {#: third #}
        {% trans %}{{ users }} user{% pluralize %}{{ users }} users{% endtrans %}
        '''.encode('utf-8')) # make python 3 happy
        assert list(babel_extract(source, ('gettext', 'ngettext', '_'), ['trans', ':'], {})) == [
            (3, 'gettext', u'Hello World', ['first']),
            (4, 'gettext', u'Hello World', ['second']),
            (6, 'ngettext', (u'%(users)s user', u'%(users)s users', None), ['third'])
        ]
项目:oa_qian    作者:sunqb    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:oa_qian    作者:sunqb    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:RealtimePythonChat    作者:quangtqag    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:RealtimePythonChat    作者:quangtqag    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:Indushell    作者:SecarmaLabs    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:Indushell    作者:SecarmaLabs    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:Liljimbo-Chatbot    作者:chrisjim316    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:Liljimbo-Chatbot    作者:chrisjim316    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:flask_system    作者:prashasy    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:flask_system    作者:prashasy    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:chihu    作者:yelongyu    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:chihu    作者:yelongyu    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:ShelbySearch    作者:Agentscreech    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:ShelbySearch    作者:Agentscreech    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:pyetje    作者:rorlika    | 项目源码 | 文件源码
def test_extract(self):
        from jinja2.ext import babel_extract
        source = BytesIO('''
        {{ gettext('Hello World') }}
        {% trans %}Hello World{% endtrans %}
        {% trans %}{{ users }} user{% pluralize %}{{ users }} users{% endtrans %}
        '''.encode('ascii')) # make python 3 happy
        assert list(babel_extract(source, ('gettext', 'ngettext', '_'), [], {})) == [
            (2, 'gettext', u'Hello World', []),
            (3, 'gettext', u'Hello World', []),
            (4, 'ngettext', (u'%(users)s user', u'%(users)s users', None), [])
        ]
项目:pyetje    作者:rorlika    | 项目源码 | 文件源码
def test_comment_extract(self):
        from jinja2.ext import babel_extract
        source = BytesIO('''
        {# trans first #}
        {{ gettext('Hello World') }}
        {% trans %}Hello World{% endtrans %}{# trans second #}
        {#: third #}
        {% trans %}{{ users }} user{% pluralize %}{{ users }} users{% endtrans %}
        '''.encode('utf-8')) # make python 3 happy
        assert list(babel_extract(source, ('gettext', 'ngettext', '_'), ['trans', ':'], {})) == [
            (3, 'gettext', u'Hello World', ['first']),
            (4, 'gettext', u'Hello World', ['second']),
            (6, 'ngettext', (u'%(users)s user', u'%(users)s users', None), ['third'])
        ]
项目:pyetje    作者:rorlika    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:pyetje    作者:rorlika    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:tellmeabout.coffee    作者:billyfung    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:tellmeabout.coffee    作者:billyfung    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:FileStoreGAE    作者:liantian-cn    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:FileStoreGAE    作者:liantian-cn    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()
项目:bawk    作者:jttwnsnd    | 项目源码 | 文件源码
def bytecode_from_string(self, string):
        """Load bytecode from a string."""
        self.load_bytecode(BytesIO(string))
项目:bawk    作者:jttwnsnd    | 项目源码 | 文件源码
def bytecode_to_string(self):
        """Return the bytecode as string."""
        out = BytesIO()
        self.write_bytecode(out)
        return out.getvalue()