From df70a11a268fdedd83d02fd9d29eb8c4d5b2e5e2 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 9 Sep 2012 18:37:30 -0400 Subject: dead code, garden --- TODO.txt | 2 +- pyramid/tests/test_chameleon_text.py | 4 ---- pyramid/tests/test_chameleon_zpt.py | 4 ---- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/TODO.txt b/TODO.txt index 7468674b5..7aa12b517 100644 --- a/TODO.txt +++ b/TODO.txt @@ -98,7 +98,7 @@ Nice-to-Have Future ------ -- 1.5: Remove all deprecated ``pyramid.testing`` functions. +- 1.5: remove ``pyramid.view.static``. - 1.5: turn ``pyramid.settings.Settings`` into a function that returns the original dict (after ``__getattr__`` deprecation period, it was deprecated diff --git a/pyramid/tests/test_chameleon_text.py b/pyramid/tests/test_chameleon_text.py index 019d63ec0..30054c398 100644 --- a/pyramid/tests/test_chameleon_text.py +++ b/pyramid/tests/test_chameleon_text.py @@ -7,13 +7,9 @@ from pyramid import testing class Base: def setUp(self): self.config = testing.setUp() - from zope.deprecation import __show__ - __show__.off() def tearDown(self): testing.tearDown() - from zope.deprecation import __show__ - __show__.on() def _getTemplatePath(self, name): import os diff --git a/pyramid/tests/test_chameleon_zpt.py b/pyramid/tests/test_chameleon_zpt.py index b85b84159..528da1fc5 100644 --- a/pyramid/tests/test_chameleon_zpt.py +++ b/pyramid/tests/test_chameleon_zpt.py @@ -7,13 +7,9 @@ from pyramid.compat import text_type class Base(object): def setUp(self): self.config = testing.setUp() - from zope.deprecation import __show__ - __show__.off() def tearDown(self): testing.tearDown() - from zope.deprecation import __show__ - __show__.on() def _getTemplatePath(self, name): import os -- cgit v1.2.3