This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients ezio.melotti, kristjan.jonsson
Date 2009-07-17.02:20:04
SpamBayes Score 1.6036228e-11
Marked as misclassified No
Message-id <1247797208.72.0.744238846554.issue6499@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2009-07-17 02:20:09ezio.melottisetrecipients: + ezio.melotti, kristjan.jonsson
2009-07-17 02:20:08ezio.melottisetmessageid: <1247797208.72.0.744238846554.issue6499@psf.upfronthosting.co.za>
2009-07-17 02:20:04ezio.melottilinkissue6499 messages
2009-07-17 02:20:04ezio.melotticreate