summaryrefslogtreecommitdiff
path: root/wsgitools/filters.py
diff options
context:
space:
mode:
Diffstat (limited to 'wsgitools/filters.py')
-rw-r--r--wsgitools/filters.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/wsgitools/filters.py b/wsgitools/filters.py
index 7ae1b69..4c7ff20 100644
--- a/wsgitools/filters.py
+++ b/wsgitools/filters.py
@@ -17,11 +17,6 @@ try:
except ImportError:
import StringIO as io
-try:
- next
-except NameError:
- def next(it):
- return it.next()
__all__.append("CloseableIterator")
class CloseableIterator: