]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Bump minimum Python version to 2.1. Fixes #1009803.
authorMartin v. Löwis <martin@v.loewis.de>
Fri, 20 Aug 2004 07:31:37 +0000 (07:31 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Fri, 20 Aug 2004 07:31:37 +0000 (07:31 +0000)
Lib/xmlrpclib.py

index e7eb4664947949174afd6a0d2007eefe0519149e..0ad1077103efc2f59f8935c4bc1fc69bd400dea3 100644 (file)
@@ -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.