New submission from Diego Manenti Martins <dmmart...@gmail.com>: this code sends data in a different way if using python 2.6 or python 2.7
>>> import urllib2 >>> url = 'http://server.com/post_image?tid=zoV6LJ' >>> f = open('test.jpg') >>> data = f.read() >>> res = urllib2.urlopen(url, data) I checked it with wireshark and the data is sent in a different way when using python 2.7 The code works for python2.5 and python2.6 ---------- components: Library (Lib) messages: 158897 nosy: Diego.Manenti.Martins priority: normal severity: normal status: open title: Different behavior for urllib2 in Python 2.7 type: behavior versions: Python 2.7 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue14639> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com