diff MySQLdb/converters.py @ 51:6122b2cacd20 MySQLdb

set and frozenset always available in Python 2.4 and newer
author adustman
date Sun, 22 Feb 2009 20:09:56 +0000
parents 0f9808c4799c
children 9ea2b0e9302e
line wrap: on
line diff
--- a/MySQLdb/converters.py	Sun Feb 22 20:07:15 2009 +0000
+++ b/MySQLdb/converters.py	Sun Feb 22 20:09:56 2009 +0000
@@ -44,11 +44,6 @@
 import datetime
 from decimal import Decimal
 
-try:
-    set
-except NameError:
-    from sets import Set as set
-
 __revision__ = "$Revision$"[11:-2]
 __author__ = "$Author$"[9:-2]