Made DateTime's constructor accept a time.struct_time class,
besides plain tuples.
diff --git a/Lib/xmlrpclib.py b/Lib/xmlrpclib.py
index a3b9e70..a873f77 100644
--- a/Lib/xmlrpclib.py
+++ b/Lib/xmlrpclib.py
@@ -343,7 +343,7 @@
 
     def __init__(self, value=0):
         if not isinstance(value, StringType):
-            if not isinstance(value, TupleType):
+            if not isinstance(value, (TupleType, time.struct_time)):
                 if value == 0:
                     value = time.time()
                 value = time.localtime(value)