diff options
Diffstat (limited to 'Lib/xmlrpc/client.py')
-rw-r--r-- | Lib/xmlrpc/client.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/xmlrpc/client.py b/Lib/xmlrpc/client.py index d18efce..c752621 100644 --- a/Lib/xmlrpc/client.py +++ b/Lib/xmlrpc/client.py @@ -349,10 +349,6 @@ class DateTime: def timetuple(self): return time.strptime(self.value, "%Y%m%dT%H:%M:%S") - def __cmp__(self, other): - s, o = self.make_comparable(other) - return cmp(s, o) - ## # Get date/time value. # |