summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-09-09 18:37:30 -0400
committerChris McDonough <chrism@plope.com>2012-09-09 18:37:30 -0400
commitdf70a11a268fdedd83d02fd9d29eb8c4d5b2e5e2 (patch)
treea5f6ee1103e8f6e54e0fe567b7270890aff8e49a
parent69e0aadac592221717e72ffd2b089bd6eccb5f33 (diff)
downloadpyramid-df70a11a268fdedd83d02fd9d29eb8c4d5b2e5e2.tar.gz
pyramid-df70a11a268fdedd83d02fd9d29eb8c4d5b2e5e2.tar.bz2
pyramid-df70a11a268fdedd83d02fd9d29eb8c4d5b2e5e2.zip
dead code, garden
-rw-r--r--TODO.txt2
-rw-r--r--pyramid/tests/test_chameleon_text.py4
-rw-r--r--pyramid/tests/test_chameleon_zpt.py4
3 files changed, 1 insertions, 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