sorin
sorin

Reputation: 170508

httplib binary data and UnicodeDecodeError in python 2.7

I just discovered that starting with Python 2.7, the httplib doesn't work anymore with binary data, breaking modules that where sending binary data over HTTP, one example being PyAMF

I am looking for a solution to the current bug, preferably one that does not require me to patch Python. Still patching PyAMF seams as an acceptable solution.

Upvotes: 3

Views: 680

Answers (1)

user850498
user850498

Reputation: 727

Seems like there is a PyAmf version for python 2.7. other versions can be found here.

Upvotes: 0

Related Questions