Malex / FrozenFW

A web framework, written in python
http://malexprojects.ath.cx/?p=FrozenFW
GNU General Public License v3.0
1 stars 0 forks source link

data.POST does not work #8

Closed Malex closed 13 years ago

Malex commented 13 years ago

if trying to process data.POST, you get this:

Traceback (most recent call last): File "/usr/lib64/python3.1/site-packages/frozen-2.0_alpha-py3.1.egg/frozen/wsgi/init.py", line 5, in app data.update(environ) File "/usr/lib64/python3.1/site-packages/frozen-2.0_alpha-py3.1.egg/frozen/Data.py", line 104, in update t = Data(self.conf,env) File "", line 36, in new_init File "/usr/lib64/python3.1/site-packages/frozen-2.0_alpha-py3.1.egg/frozen/Data.py", line 95, in init self.rPOST() File "/usr/lib64/python3.1/site-packages/frozen-2.0_alpha-py3.1.egg/frozen/Data.py", line 54, in rPOST for i in self.env.get("wsgi.input").read(tmp).split("&"): TypeError: Type str doesn't support the buffer API

Of course this must not happen.