summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_xmlrpc.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-30458: Disallow control chars in http URLs (GH-12755) (GH-13154) (GH-13315)Victor Stinner2019-05-211-1/+7
* [2.7] bpo-33759: Fix test.test_xmlrpc.ServerProxyTestCase. (GH-7362) (GH-7374)Serhiy Storchaka2018-06-041-7/+3
* Issue #26873: xmlrpclib now raises ResponseError on unsupported type tagsSerhiy Storchaka2016-05-041-0/+14
* Issue #26147: xmlrpclib now works with unicode not encodable with usedSerhiy Storchaka2016-01-201-3/+24
* Issue #9006: Added tests for XML RPC with non-UTF-8 encoding.Serhiy Storchaka2016-01-181-3/+53
* Issue #21847: Fixed xmlrpclib and tests on Unicode-disabled builds.Serhiy Storchaka2016-01-181-10/+9
* add a default limit for the amount of data xmlrpclib.gzip_decode will return ...Benjamin Peterson2014-12-061-1/+18
* Issue #19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-101-5/+7
* Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServerCharles-François Natali2012-02-181-0/+6
|\
| * Fix deprecation warning in test_xmlrpc.Ezio Melotti2010-08-031-0/+1
| * Merged revisions 71984 via svnmerge fromWalter Dörwald2009-04-261-20/+18
| * Merged revisions 70866-70868,70870-70871,70893,70896,70902,70905,70907,70912,...Georg Brandl2009-04-051-1/+5
| * Merged revisions 67245,67277,67289,67295,67301-67303,67307,67330,67332,67336,...Georg Brandl2008-12-051-1/+86
* | Remove duplication.Ezio Melotti2011-10-191-2/+2
* | Issue #12931: xmlrpclib now encodes Unicode URI to ISO-8859-1, instead ofVictor Stinner2011-09-221-0/+3
* | Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-18/+18
* | Issue #7449, part 9: fix test_xmlrpclib for missing threading moduleVictor Stinner2010-04-271-3/+23
* | Issue 6292: for the moment at least, the test suite passes if runR. David Murray2010-02-231-0/+2
* | use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-5/+5
* | use assert[Not]In where appropriateEzio Melotti2010-01-231-4/+4
* | Try to fix transient refleaks in test_xmlrpc.Antoine Pitrou2009-10-301-0/+1
* | Don't invoke reload(sys) and use StringIO objects instead of real files to ca...Nick Coghlan2009-10-171-46/+34
* | Issue 6654Kristján Valur Jónsson2009-08-271-1/+75
* | http://bugs.python.org/issue6499Kristján Valur Jónsson2009-07-191-1/+5
* | http://bugs.python.org/issue6267Kristján Valur Jónsson2009-07-121-4/+41
* | http://bugs.python.org/issue6460Kristján Valur Jónsson2009-07-111-2/+8
* | convert usage of fail* to assert*Benjamin Peterson2009-06-301-14/+14
* | http://bugs.python.org/issue6267Kristján Valur Jónsson2009-06-281-14/+128
* | Make test.test_support.EnvironmentVarGuard behave like a dictionary.Walter Dörwald2009-05-011-2/+2
* | Use test.test_support.EnvironmentVarGuard where tests change environment vars.Walter Dörwald2009-04-261-20/+18
* | Fix for issue5040. Adding test for Content-LengthSenthil Kumaran2009-04-011-0/+28
* | Fix test_xmlrpc and make the CGI handler work with no CONTENT_LENGTH.Georg Brandl2009-04-011-1/+5
* | Re-enable all tests for windows platforms.Kristján Valur Jónsson2009-01-141-25/+24
* | Issue 4879: Allow buffering for HTTPResponseKristján Valur Jónsson2009-01-111-1/+1
* | Add unittests that verify documented behavior of public methods in TransportJeremy Hylton2008-11-241-1/+86
|/
* Comment typoAndrew M. Kuchling2008-04-211-1/+1
* resolve issue 2014Skip Montanaro2008-04-181-0/+11
* Bug 1503: Get the test to pass on OSX. This should make the test moreNeal Norwitz2008-03-281-2/+10
* Speed up the test by avoiding socket timeouts.Neal Norwitz2008-03-231-3/+5
* #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances.Andrew M. Kuchling2008-02-231-47/+8
* socket.error doesn't have a headers attribute like ProtocolError.Neal Norwitz2008-01-271-10/+10
* Try to handle socket.errors properly in is_unavailableNeal Norwitz2008-01-271-3/+7
* Catch socket errors that are often the cause of transient failures.Neal Norwitz2008-01-271-10/+10
* The OS X buildbot had errors with the unavailable exceptions disabled. Resto...Neal Norwitz2008-01-261-8/+2
* Use a condition variable (threading.Event) rather than sleeps and checking aNeal Norwitz2008-01-261-14/+19
* Disabled test_xmlrpc:test_404. It's causing lots of false alarms.Christian Heimes2008-01-191-1/+2
* Increase unit test coverage of SimpleXMLRPCServer.Georg Brandl2007-12-071-4/+132
* Ignore test failures caused by 'resource temporarily unavailable'Facundo Batista2007-08-291-9/+15
* Ignore test failures caused by 'resource temporarily unavailable'Facundo Batista2007-08-271-12/+43
* Catch ProtocolError exceptions and include the header information inFacundo Batista2007-08-211-25/+52