Chris McDonough
2012-09-19 1c7724e5484c65257f18b542662d5e1a1115c9f0
remove dead code
3 files modified
21 ■■■■ changed files
pyramid/chameleon_text.py 5 ●●●●● patch | view | raw | blame | history
pyramid/chameleon_zpt.py 5 ●●●●● patch | view | raw | blame | history
pyramid/tests/test_config/test_init.py 11 ●●●● patch | view | raw | blame | history
pyramid/chameleon_text.py
@@ -1,5 +1,3 @@
import sys
from zope.interface import implementer
from chameleon.zpt.template import PageTextTemplateFile
@@ -22,9 +20,6 @@
    @reify # avoid looking up reload_templates before manager pushed
    def template(self):
        if sys.platform.startswith('java'): # pragma: no cover
            raise RuntimeError(
                'Chameleon templates are not compatible with Jython')
        return PageTextTemplateFile(self.path,
                                    auto_reload=self.lookup.auto_reload,
                                    debug=self.lookup.debug,
pyramid/chameleon_zpt.py
@@ -1,5 +1,3 @@
import sys
from zope.interface import implementer
from chameleon.zpt.template import PageTemplateFile
@@ -20,9 +18,6 @@
    @reify # avoid looking up reload_templates before manager pushed
    def template(self):
        if sys.platform.startswith('java'): # pragma: no cover
            raise RuntimeError(
                'Chameleon templates are not compatible with Jython')
        tf = PageTemplateFile(self.path,
                              auto_reload=self.lookup.auto_reload,
                              debug=self.lookup.debug,
pyramid/tests/test_config/test_init.py
@@ -923,12 +923,13 @@
        result = render_view_to_response(ctx, req, 'another_stacked_class2')
        self.assertEqual(result, 'another_stacked_class')
        if not os.name.startswith('java'):
            # on Jython, a class without an __init__ apparently accepts
            # any number of arguments without raising a TypeError.
        # NB: on Jython, a class without an __init__ apparently accepts
        # any number of arguments without raising a TypeError, so the next
        # assertion may fail there.  We don't support Jython at the moment,
        # this is just a note to a future self.
            self.assertRaises(TypeError,
                              render_view_to_response, ctx, req, 'basemethod')
        self.assertRaises(TypeError,
                          render_view_to_response, ctx, req, 'basemethod')
        result = render_view_to_response(ctx, req, 'method1')
        self.assertEqual(result, 'method1')