diff options
author | Helmut Grohne <helmut@subdivi.de> | 2010-08-31 12:31:51 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2010-08-31 12:31:51 +0200 |
commit | 73e958a9b2ca244a6e7ec4e85ef91327425d8aba (patch) | |
tree | 841dd9a753db98d6e444f7edb518876eeb033103 /wsgitools/middlewares.py | |
parent | 55492002da9f49e4eb4ee94ab73e232546f0c45f (diff) | |
download | wsgitools-73e958a9b2ca244a6e7ec4e85ef91327425d8aba.tar.gz |
bugfix: io module from py2.6 provides incompatible StringIO
Diffstat (limited to 'wsgitools/middlewares.py')
-rw-r--r-- | wsgitools/middlewares.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/wsgitools/middlewares.py b/wsgitools/middlewares.py index 38e2e67..09d4cfe 100644 --- a/wsgitools/middlewares.py +++ b/wsgitools/middlewares.py @@ -5,13 +5,12 @@ import sys import cgitb import binascii from wsgitools.filters import CloseableList, CloseableIterator +# Cannot use io module as it is broken in 2.6. +# Writing a str to a io.StringIO results in an exception. try: - import io + import cStringIO as io except ImportError: - try: - import cStringIO as io - except ImportError: - import StringIO as io + import StringIO as io try: next except NameError: |