Message90599
I'm working on #6026 and I noticed that the patch for #6267 introduced
an "import gzip" in Lib/xmlrpclib.py in r73638.
gzip tries to import zlib, and if it's not available the import fails.
This led to 3 new tests failures in the trunk: test_xmlrpc,
test_docxmlrpc and test_multiprocessing.
This also mean that the modules xmlrpclib, DocXMLRPCServer and
SimpleXMLRPCServer (and possibly others) cannot be imported anymore if
zlib is not available (they used to work on 2.6).
xmlrpclib should check if the "import gzip" fails and disable the new
gzip-related features (raising an error only when someone tries to use
them).
I don't know if this check can be moved directly on gzip but it seems
unlikely. |
|
Date |
User |
Action |
Args |
2009-07-17 02:20:09 | ezio.melotti | set | recipients:
+ ezio.melotti, kristjan.jonsson |
2009-07-17 02:20:08 | ezio.melotti | set | messageid: <1247797208.72.0.744238846554.issue6499@psf.upfronthosting.co.za> |
2009-07-17 02:20:04 | ezio.melotti | link | issue6499 messages |
2009-07-17 02:20:04 | ezio.melotti | create | |
|