[issue10336] test_xmlrpc fails if gzip is not supported by client

2021-12-09 Thread Irit Katriel
Change by Irit Katriel : -- stage: test needed -> resolved status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mai

[issue10336] test_xmlrpc fails if gzip is not supported by client

2018-12-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The server for this test is ran in the different thread of the same process. The test is skipped if gzip is not supported. I don't see a way how it can fail. -- nosy: +serhiy.storchaka resolution: -> not a bug status: open -> pending _

[issue10336] test_xmlrpc fails if gzip is not supported by client

2012-11-18 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti stage: -> test needed type: -> behavior versions: +Python 3.3, Python 3.4 ___ Python tracker ___ __

[issue10336] test_xmlrpc fails if gzip is not supported by client

2010-11-08 Thread Éric Araujo
Éric Araujo added the comment: No problem :) I’ve had a look at the test and don’t understand the problem. What’s the client you’re referring to? I thought that in the tests, client-side and server-side were both under control. Is the problem related to *python* being built without gzip s

[issue10336] test_xmlrpc fails if gzip is not supported by client

2010-11-07 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Sorry, I cannot. I don't know HTTP. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue10336] test_xmlrpc fails if gzip is not supported by client

2010-11-06 Thread Éric Araujo
Éric Araujo added the comment: Do you want to make a patch? -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing

[issue10336] test_xmlrpc fails if gzip is not supported by client

2010-11-06 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto : In test_xmlrpc.py, def test_gsip_response(self): # (sniP) self.assertTrue(a>b) last line can fail if gzip is not supported by client. (gzip is not set in HTTP header's Accept-Encoding) -- _

[issue10336] test_xmlrpc fails if gzip is not supported by client

2010-11-06 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- Removed message: http://bugs.python.org/msg120602 ___ Python tracker ___ ___ Python-bugs-list mailin

[issue10336] test_xmlrpc fails if gzip is not supported by client

2010-11-06 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto : In test_xmlrpc.py, def test_gsip_response(self): # (sniP) self.assertTrue(a>b) last line can fail if gzip is not supported by client. (gzip is not set in HTTP header's Accept-Encoding) =