summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/util.py')
-rw-r--r--lib/sqlalchemy/util.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/sqlalchemy/util.py b/lib/sqlalchemy/util.py
index ea1c8286a..d2a202e50 100644
--- a/lib/sqlalchemy/util.py
+++ b/lib/sqlalchemy/util.py
@@ -4,23 +4,23 @@
# This module is part of SQLAlchemy and is released under
# the MIT License: http://www.opensource.org/licenses/mit-license.php
+import md5, sys, warnings, sets
+import __builtin__
+
+from sqlalchemy import exceptions, logging
+
try:
import thread, threading
except ImportError:
import dummy_thread as thread
import dummy_threading as threading
-from sqlalchemy import exceptions, logging
-import md5
-import sys
-import warnings
-import __builtin__
-
try:
Set = set
+ set_types = set, sets.Set
except:
- import sets
Set = sets.Set
+ set_types = sets.Set,
try:
reversed = __builtin__.reversed