- 9e8f523 add a default limit for the amount of data xmlrpclib.gzip_decode will return (closes #16043) by Benjamin Peterson · 11 years ago
- 1f70221 Issue #19572: More silently skipped tests explicitly skipped. by Zachary Ware · 12 years ago
- e062466 Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer by Charles-François Natali · 13 years ago
- 1e87da1 Remove duplication. by Ezio Melotti · 14 years ago
- 51b7198 Issue #12931: xmlrpclib now encodes Unicode URI to ISO-8859-1, instead of by Victor Stinner · 14 years ago
- 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 15 years ago
- 9d19695 Fix deprecation warning in test_xmlrpc. by Ezio Melotti · 15 years ago
- a44b5a3 Issue #7449, part 9: fix test_xmlrpclib for missing threading module by Victor Stinner · 15 years ago
- f28fd24 Issue 6292: for the moment at least, the test suite passes if run by R. David Murray · 15 years ago
- b0f5adc use assert[Not]IsInstance where appropriate by Ezio Melotti · 16 years ago
- aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
- 3c96858 Try to fix transient refleaks in test_xmlrpc. by Antoine Pitrou · 16 years ago
- 8c1ffeb Don't invoke reload(sys) and use StringIO objects instead of real files to capture stdin and stdout when needed (ensures all sys attributes remain unmodified after test_xmlrpc runs) by Nick Coghlan · 16 years ago
- 429677e Issue 6654 by Kristján Valur Jónsson · 16 years ago
- 6d75590 http://bugs.python.org/issue6499 by Kristján Valur Jónsson · 16 years ago
- 0369ba2 http://bugs.python.org/issue6267 Add more tests for the xlmrpc.ServerProxy by Kristján Valur Jónsson · 16 years ago
- ef6007c http://bugs.python.org/issue6460 by Kristján Valur Jónsson · 16 years ago
- 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
- e007860 http://bugs.python.org/issue6267 Cumulative patch to http and xmlrpc by Kristján Valur Jónsson · 16 years ago
- 6733bed Make test.test_support.EnvironmentVarGuard behave like a dictionary. by Walter Dörwald · 16 years ago
- 536120e Merged revisions 71984 via svnmerge from by Walter Dörwald · 16 years ago
- 4b965f6 Use test.test_support.EnvironmentVarGuard where tests change environment vars. by Walter Dörwald · 16 years ago
- 9b08e05 Merged revisions 70866-70868,70870-70871,70893,70896,70902,70905,70907,70912,70915,70927,70933,70940,70944,70954,70963,70998,71056 via svnmerge from by Georg Brandl · 16 years ago
- 20d114c Fix for issue5040. Adding test for Content-Length by Senthil Kumaran · 16 years ago
- 61fce38 Fix test_xmlrpc and make the CGI handler work with no CONTENT_LENGTH. by Georg Brandl · 16 years ago
- 018760e Re-enable all tests for windows platforms. by Kristján Valur Jónsson · 17 years ago
- 3c43fcb Issue 4879: Allow buffering for HTTPResponse by Kristján Valur Jónsson · 17 years ago
- d209460 Merged revisions 67245,67277,67289,67295,67301-67303,67307,67330,67332,67336,67355,67359,67362,67364,67367-67368,67370 via svnmerge from by Georg Brandl · 17 years ago
- 8942011 Add unittests that verify documented behavior of public methods in Transport by Jeremy Hylton · 17 years ago
- a5489d4 Comment typo by Andrew M. Kuchling · 17 years ago
- b131f04 resolve issue 2014 by Skip Montanaro · 17 years ago
- 70cea58 Bug 1503: Get the test to pass on OSX. This should make the test more by Neal Norwitz · 17 years ago
- 162d719 Speed up the test by avoiding socket timeouts. by Neal Norwitz · 17 years ago
- 085f75a #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. by Andrew M. Kuchling · 17 years ago
- cf25eb1 socket.error doesn't have a headers attribute like ProtocolError. by Neal Norwitz · 18 years ago
- ed444e5 Try to handle socket.errors properly in is_unavailable by Neal Norwitz · 18 years ago
- 183c534 Catch socket errors that are often the cause of transient failures. by Neal Norwitz · 18 years ago
- 08b50eb The OS X buildbot had errors with the unavailable exceptions disabled. Restore it. by Neal Norwitz · 18 years ago
- 653272f Use a condition variable (threading.Event) rather than sleeps and checking a by Neal Norwitz · 18 years ago
- 6c29be5 Disabled test_xmlrpc:test_404. It's causing lots of false alarms. by Christian Heimes · 18 years ago
- 5d1b4d4 Increase unit test coverage of SimpleXMLRPCServer. by Georg Brandl · 18 years ago
- 492e592 Ignore test failures caused by 'resource temporarily unavailable' by Facundo Batista · 18 years ago
- f91ad6a Ignore test failures caused by 'resource temporarily unavailable' by Facundo Batista · 18 years ago
- c65a5f1 Catch ProtocolError exceptions and include the header information in by Facundo Batista · 18 years ago
- 7f686fc Added a flag (_send_traceback_header) to the SimpleXMLRPCServer class by Facundo Batista · 18 years ago
- a53872b Added tests for simple function calls and introspection that are run by Facundo Batista · 18 years ago
- 5a3b524 Added tests for basic behavior of DateTime, Binary, and Fault classes by Facundo Batista · 18 years ago
- 0752935 Patch #1070046: Marshal new-style objects like InstanceType in xmlrpclib. by Martin v. Löwis · 19 years ago
- 536cf99 Whitespace normalization. by Tim Peters · 20 years ago
- bdb3901 [Bug #1164912] Ensure Datetime wrapper class .value attribute is an 8-bit string, not a Unicode string by Andrew M. Kuchling · 20 years ago
- 174dd22 Add better datetime support to xmlrpclib module. Closes patch #1120353. by Skip Montanaro · 20 years ago
- f754f5f test_default_encoding_issues(): Fully restore sys.setdefaultencoding. by Tim Peters · 20 years ago
- 22c0706 fix decoding in _stringify to not depend on the default encoding by Fred Drake · 20 years ago
- ba613c3 accept datetime.datetime instances when marshalling; by Fred Drake · 20 years ago
- b12d97c [Bug #841757] Exercise handling of Unicode strings by Andrew M. Kuchling · 21 years ago
- 0b85203 [Patch #628208] Test the 'nil' extension by Andrew M. Kuchling · 22 years ago
- 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 23 years ago
- 3e7bba9 added tests for long ints and ints where they are > 32 bits. by Skip Montanaro · 24 years ago
- 419abda simple dumps/loads test case for xmlrpclib by Skip Montanaro · 24 years ago