aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/xmlrpc/client.py
Commit message (Expand)AuthorAge
* xmlrpc.client uses datetime.datetime.isoformat() (#105741)Victor Stinner2023-06-14
* bpo-45975: Simplify some while-loops with walrus operator (GH-29347)Nick Drozd2022-11-26
* bpo-44712: Replace "type(literal)" with corresponding builtin types (GH-27294)Serhiy Storchaka2022-05-08
* bpo-45386: Handle strftime's ValueError graciously in xmlrpc.client (GH-28765)rtobar2021-10-13
* bpo-43433: Preserve query and fragment in the URL of the server in ServerProx...Serhiy Storchaka2021-03-29
* bpo-38038: Remove urllib.parse._splittype from xmlrpc.client. (GH-15703)Dong-hee Na2019-09-08
* bpo-15999: Always pass bool instead of int to the expat parser. (GH-15622)Serhiy Storchaka2019-09-01
* bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952)Serhiy Storchaka2019-08-08
* bpo-36793: Remove unneeded __str__ definitions. (GH-13081)Serhiy Storchaka2019-05-06
* bpo-35153: Add headers parameter to xmlrpc.client.ServerProxy (GH-10308)Cédric Krier2019-02-19
* bpo-27485: Rename and deprecate undocumented functions in urllib.parse (GH-2205)Cheryl Sabella2018-04-25
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-14
* Replace KB unit with KiB (#4293)Victor Stinner2017-11-08
* Issue #26885: xmlrpc now supports unmarshalling additional data types usedSerhiy Storchaka2016-09-11
* Issue #26873: xmlrpc now raises ResponseError on unsupported type tagsSerhiy Storchaka2016-05-04
|\
| * Issue #26873: xmlrpc now raises ResponseError on unsupported type tagsSerhiy Storchaka2016-05-04
* | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-17
|\|
| * Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-17
* | Issue #26402: Merge XML-RPC client fix from 3.5Martin Panter2016-02-25
|\|
| * Issue #26402: Fix XML-RPC client retrying after server disconnectionMartin Panter2016-02-25
* | Issue #25985: sys.version_info is now used instead of sys.versionSerhiy Storchaka2016-02-11
|/
* Issue #26147: xmlrpc now works with strings not encodable with usedSerhiy Storchaka2016-01-20
* Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-02
|\
| * Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-02
* | Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-10
|\|
| * Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-10
* | #3566: Clean up handling of remote server disconnects.R David Murray2015-04-05
* | Issue #22831: Use "with" to avoid possible fd leaks.Serhiy Storchaka2015-04-04
* | Issue #23326: Removed __ne__ implementations. Since fixing default __ne__Serhiy Storchaka2015-01-31
* | merge 3.4 (#16043)Benjamin Peterson2014-12-05
|\|
| * merge 3.3 (#16043)Benjamin Peterson2014-12-05
| |\
| | * merge 3.2 (#16043)Benjamin Peterson2014-12-05
| | |\
| | | * add a default limit for the amount of data xmlrpclib.gzip_decode will return ...Benjamin Peterson2014-12-05
* | | | merge 3.4 (#22960)Benjamin Peterson2014-11-29
|\| | |
| * | | add context parameter to xmlrpclib.ServerProxy (#22960)Benjamin Peterson2014-11-29
* | | | Issue #22033: Reprs of most Python implemened classes now contain actualSerhiy Storchaka2014-07-25
* | | | Issue #22031: Reprs now always use hexadecimal format with the "0x" prefixSerhiy Storchaka2014-07-22
* | | | Issue #20627: xmlrpc.client.ServerProxy is now a context manager.Brett Cannon2014-03-21
|/ / /
* | | Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-20
* | | merge from 3.3Senthil Kumaran2014-01-12
|\| |
| * | Issue #19082: Working xmlrpc.server and xmlrpc.client examples. Both in modul...Senthil Kumaran2014-01-12
* | | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-27
|\| |
| * | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-27
* | | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-04
* | | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-13
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-25
* | | Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-18
|/ /
* | Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-18
|\|
| * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-18
* | #13973: move a couple of imports at module level. Patch by Tshepang Lekhonkh...Ezio Melotti2012-02-24