diff options
| author | Michael Trier <mtrier@gmail.com> | 2010-02-20 23:08:18 +0000 |
|---|---|---|
| committer | Michael Trier <mtrier@gmail.com> | 2010-02-20 23:08:18 +0000 |
| commit | 8c0567ea83781bca0333dbeb6dbb34d939736588 (patch) | |
| tree | 1b101dc9d244f9ca897f797bc0da80d10cc74eaf | |
| parent | 20d6baa09f461b49e8c00d3b8b437284438d4dd5 (diff) | |
| download | sqlalchemy-8c0567ea83781bca0333dbeb6dbb34d939736588.tar.gz | |
Fixed cPickle problem in Python3.
| -rw-r--r-- | test/base/test_utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/base/test_utils.py b/test/base/test_utils.py index 9321c888f..df80e41e4 100644 --- a/test/base/test_utils.py +++ b/test/base/test_utils.py @@ -81,11 +81,13 @@ class FrozenDictTest(TestBase): def test_serialize(self): picklers = set() + # Py2K try: import cPickle picklers.add(cPickle) except ImportError: pass + # end Py2K import pickle picklers.add(pickle) |
