summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-09-06 18:33:18 -0400
committerChris McDonough <chrism@plope.com>2011-09-06 18:33:18 -0400
commit0833f63e0b0ca54fd55685767e576e91fd5fb315 (patch)
treed8194e3d2fc90a1baf4aa98a3b405b22f0547b91
parentfe1548d160ff881f50410709547bbf895733ea10 (diff)
downloadpyramid-0833f63e0b0ca54fd55685767e576e91fd5fb315.tar.gz
pyramid-0833f63e0b0ca54fd55685767e576e91fd5fb315.tar.bz2
pyramid-0833f63e0b0ca54fd55685767e576e91fd5fb315.zip
unused imports; garden
-rw-r--r--TODO.txt4
-rw-r--r--pyramid/static.py2
2 files changed, 1 insertions, 5 deletions
diff --git a/TODO.txt b/TODO.txt
index 982af67a5..47b6a41aa 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -87,11 +87,9 @@ Future
``wsgi.file_wrapper`` support (FileApp.get)
- 'HEAD' method support (FileApp.get)
-
handling file permission exceptions (FileApp.get).
- Features we won't supportL ETAG and if-none-match
+ Features we won't support: ETAG and if-none-match
support (DataApp.get); replace with if-modified-since handling.
- 1.3: use zope.registry rather than zope.component.
diff --git a/pyramid/static.py b/pyramid/static.py
index d342fad9e..3d4fb90f5 100644
--- a/pyramid/static.py
+++ b/pyramid/static.py
@@ -1,10 +1,8 @@
-from datetime import datetime
from os.path import normcase, normpath, join, getmtime, getsize, isdir, exists
from pkg_resources import resource_exists, resource_filename, resource_isdir
import mimetypes
from repoze.lru import lru_cache
-from webob import UTC
from pyramid.asset import resolve_asset_spec
from pyramid.httpexceptions import HTTPNotFound