1. 352601c Issue #26885: xmlrpc now supports unmarshalling additional data types used by Serhiy Storchaka · 8 years ago
  2. 45cdcd9 Issue #26873: xmlrpc now raises ResponseError on unsupported type tags by Serhiy Storchaka · 8 years ago
  3. 290fed4 Issue #26873: xmlrpc now raises ResponseError on unsupported type tags by Serhiy Storchaka · 8 years ago
  4. b6a9c97 Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error by Serhiy Storchaka · 8 years ago
  5. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  6. 6e13225 Issue #26402: Merge XML-RPC client fix from 3.5 by Martin Panter · 9 years ago
  7. eae3336 Issue #26402: Fix XML-RPC client retrying after server disconnection by Martin Panter · 9 years ago
  8. 885bdc4 Issue #25985: sys.version_info is now used instead of sys.version by Serhiy Storchaka · 9 years ago
  9. aebb6d3 Issue #26147: xmlrpc now works with strings not encodable with used by Serhiy Storchaka · 9 years ago
  10. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  11. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  12. 7e7a3db Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  13. 2116b12 Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  14. cae7bdb #3566: Clean up handling of remote server disconnects. by R David Murray · 9 years ago
  15. 46ba6c8 Issue #22831: Use "with" to avoid possible fd leaks. by Serhiy Storchaka · 9 years ago
  16. 08448a1 Issue #23326: Removed __ne__ implementations. Since fixing default __ne__ by Serhiy Storchaka · 10 years ago
  17. 7eda940 merge 3.4 (#16043) by Benjamin Peterson · 10 years ago
  18. eca72d4 merge 3.3 (#16043) by Benjamin Peterson · 10 years ago
  19. 81b7374 merge 3.2 (#16043) by Benjamin Peterson · 10 years ago
  20. 4e9cefa add a default limit for the amount of data xmlrpclib.gzip_decode will return (closes #16043) by Benjamin Peterson · 10 years ago
  21. e39bba2 merge 3.4 (#22960) by Benjamin Peterson · 10 years ago
  22. c1da3d1 add context parameter to xmlrpclib.ServerProxy (#22960) by Benjamin Peterson · 10 years ago
  23. 465e60e Issue #22033: Reprs of most Python implemened classes now contain actual by Serhiy Storchaka · 10 years ago
  24. 0c937b3 Issue #22031: Reprs now always use hexadecimal format with the "0x" prefix by Serhiy Storchaka · 10 years ago
  25. 33a4000 Issue #20627: xmlrpc.client.ServerProxy is now a context manager. by Brett Cannon · 11 years ago
  26. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 11 years ago
  27. 95be7ff merge from 3.3 by Senthil Kumaran · 11 years ago
  28. 939e2db Issue #19082: Working xmlrpc.server and xmlrpc.client examples. Both in modules and in documentation. by Senthil Kumaran · 11 years ago
  29. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  30. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  31. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  32. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  33. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  34. 0832af6 Issue #16717: get rid of socket.error, replace with OSError by Andrew Svetlov · 12 years ago
  35. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  36. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  37. 91932da #13973: move a couple of imports at module level. Patch by Tshepang Lekhonkhobe. by Ezio Melotti · 13 years ago
  38. 6166519 Closes #13297: use bytes type to send and receive binary data through XMLRPC. by Florent Xicluna · 13 years ago
  39. 2738a64 Fix regression due to changeset 2096158376e5 (issue #13305). by Florent Xicluna · 13 years ago
  40. b6f019a Let's assume that the datetime module is always available. by Florent Xicluna · 13 years ago
  41. 75861df Fix User-Agent for the xmlrpc.client, and catch KeyboardInterrupt for the standalone xmlrpc.server. by Florent Xicluna · 13 years ago
  42. f70fd70 Merge 3.2 by Florent Xicluna · 13 years ago
  43. 93dfee1 Issue #13293: Better error message when trying to marshal bytes using xmlrpc.client. by Florent Xicluna · 13 years ago
  44. c4fec93 Cleanup xmlrpc: remove obsolete comments, unused imports. Add test for bytes marshalling. by Florent Xicluna · 13 years ago
  45. 3fa29f7 Closes #13291: NameError in xmlrpc package. by Florent Xicluna · 13 years ago
  46. 2bb96f5 Cleanup code: remove int/long idioms and simplify a while statement. by Florent Xicluna · 13 years ago
  47. f34445f Fix Issue8194 - Fix incompatible API change in the parse_respones for xmlrpclib. by Senthil Kumaran · 14 years ago
  48. 6a0b5c4 Code Changes as per review comments by Antoine Pitrou. by Senthil Kumaran · 14 years ago
  49. 8ce1f1f Fix Issue 9991: xmlrpc client ssl check faulty by Senthil Kumaran · 14 years ago
  50. 756f547 #9032: XML-RPC client: Transport.request() retries on EPIPE error by Victor Stinner · 14 years ago
  51. fe99105 Use true booleans and PEP8 for argdefaults. by Georg Brandl · 15 years ago
  52. e671fd2 Issue #6360: Simplify string decoding in xmlrpc.client. by Alexandre Vassalotti · 15 years ago
  53. 9ab0731 merging revision 74100 from trunk: by Kristján Valur Jónsson · 15 years ago
  54. aefde24 porting revision 74098 from trunk: by Kristján Valur Jónsson · 15 years ago
  55. 43535d9 http://bugs.python.org/issue6267 by Kristján Valur Jónsson · 15 years ago
  56. 985fc6a http://bugs.python.org/issue6267 porting revision 73638 to py3k by Kristján Valur Jónsson · 15 years ago
  57. b54d801 #3613: add base64.encodebytes and decodebytes as the new spelling of encodestring and decodestring; deprecate the latter. by Georg Brandl · 15 years ago
  58. cef803f Remove mentions of the nonexisting SlowParser in xmlrpc.client. by Georg Brandl · 15 years ago
  59. 317185a Recorded merge of revisions 73201 via svnmerge from by Georg Brandl · 15 years ago
  60. b3af08f Fix for issue5040. Adding support for unicode message passing and tests for unicode message and test for Content-Length. by Senthil Kumaran · 15 years ago
  61. c8dcfb6 part of #3613: fix get_host_info() usage of base64.encodestring(). by Georg Brandl · 16 years ago
  62. 7e11b3f merging / reimplementing r68532 from the trunk to Py3k by Kristján Valur Jónsson · 16 years ago
  63. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 16 years ago
  64. 41e3667 #3614: Correct a typo in xmlrpc.client. by Amaury Forgeot d'Arc · 16 years ago
  65. 1afc169 Make a new urllib package . by Jeremy Hylton · 16 years ago
  66. f08a9dd Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from by Georg Brandl · 16 years ago
  67. 2442015 Create http package. #2883. by Georg Brandl · 16 years ago
  68. 38eceaa Create xmlrpc package. Issue #2886. by Georg Brandl · 16 years ago[Renamed (96%) from Lib/xmlrpclib.py]
  69. dae2a89 Merged revisions 62350-62355,62358-62359,62364-62365,62370,62372-62375,62378-62379,62381 via svnmerge from by Christian Heimes · 16 years ago
  70. 05e8be1 Merged revisions 60990-61002 via svnmerge from by Christian Heimes · 17 years ago
  71. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  72. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  73. 261f9df Fix fall-out of str.decode removal. by Guido van Rossum · 17 years ago
  74. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  75. 25a29a9 One further change. by Guido van Rossum · 17 years ago
  76. 54a40cb Force test_xmlrpc to pass. I'm not happy with how I did this, but I don't by Guido van Rossum · 17 years ago
  77. cfe02a4 Fixes by John Reese and Jacques Frechet that make test_xmlrpc pass. by Guido van Rossum · 17 years ago
  78. 9604286 Fix xmlrpc unittest. While it now passes on Linux, it still fails by Hye-Shik Chang · 17 years ago
  79. 5d8a88a Change xmlrpclib to use the newer httplib interface. by Jeremy Hylton · 17 years ago
  80. 2dbde5e In cases where dealing with base64, do the conversion but then get the ASCII by Brett Cannon · 17 years ago
  81. d38d078 Expat parser no longer has a returns_unicode attribute since everything is by Brett Cannon · 17 years ago
  82. 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 17 years ago
  83. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  84. 54ad523 Make xmlrpclib fail less (test_sundry passes). by Guido van Rossum · 17 years ago
  85. 68937b4 Change some uses of cStringIO.StringIO to io.StringIO. by Guido van Rossum · 17 years ago
  86. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  87. ff11334 Remove the SlowParser class because it depended on the xmllib module by Neal Norwitz · 17 years ago
  88. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  89. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  90. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  91. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  92. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  93. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  94. 65810fe SF patch 1495675: Remove types.InstanceType and new.instance (Collin Winter) by Guido van Rossum · 18 years ago
  95. e4dea98 Fix the unit tests by adding dispatch tables for DateTime and Binary. by Guido van Rossum · 18 years ago
  96. bdb3901 [Bug #1164912] Ensure Datetime wrapper class .value attribute is an 8-bit string, not a Unicode string by Andrew M. Kuchling · 19 years ago
  97. 174dd22 Add better datetime support to xmlrpclib module. Closes patch #1120353. by Skip Montanaro · 19 years ago
  98. 22c0706 fix decoding in _stringify to not depend on the default encoding by Fred Drake · 20 years ago
  99. ba613c3 accept datetime.datetime instances when marshalling; by Fred Drake · 20 years ago
  100. fe59dc1 Revert previous checkin. by Raymond Hettinger · 20 years ago