summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2004-08-20 07:31:37 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2004-08-20 07:31:37 (GMT)
commit37af986ebf7e43be683e2539ba918251f5fc7d21 (patch)
tree01074896dc8534475bec5ca2a651ef0e1961546c /Lib
parent61d77e0d970fb816efa1d0bc758c4b461da99e8c (diff)
downloadcpython-37af986ebf7e43be683e2539ba918251f5fc7d21.zip
cpython-37af986ebf7e43be683e2539ba918251f5fc7d21.tar.gz
cpython-37af986ebf7e43be683e2539ba918251f5fc7d21.tar.bz2
Bump minimum Python version to 2.1. Fixes #1009803.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/xmlrpclib.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/xmlrpclib.py b/Lib/xmlrpclib.py
index e7eb466..0ad1077 100644
--- a/Lib/xmlrpclib.py
+++ b/Lib/xmlrpclib.py
@@ -8,10 +8,7 @@
# implement XML-RPC servers.
#
# Notes:
-# this version is designed to work with Python 1.5.2 or newer.
-# unicode encoding support requires at least Python 1.6.
-# experimental HTTPS requires Python 2.0 built with SSL sockets.
-# expat parser support requires Python 2.0 with pyexpat support.
+# this version is designed to work with Python 2.1 or newer.
#
# History:
# 1999-01-14 fl Created
@@ -51,6 +48,7 @@
# 2003-06-15 gn Add support for time.struct_time
# 2003-07-12 gp Correct marshalling of Faults
# 2003-10-31 mvl Add multicall support
+# 2004-08-20 mvl Bump minimum supported Python version to 2.1
#
# Copyright (c) 1999-2002 by Secret Labs AB.
# Copyright (c) 1999-2002 by Fredrik Lundh.