diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-05-26 16:58:37 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-05-26 16:58:37 -0400 |
| commit | 4e930a7f780f0997e8f7f9ef4efe5c57ad86efd0 (patch) | |
| tree | 00160eba433ec698b6f849b48c551e09c839cbfd /lib/sqlalchemy/engine | |
| parent | b3654ee37abe7af3d83098cd8de1980369a3fcba (diff) | |
| download | sqlalchemy-4e930a7f780f0997e8f7f9ef4efe5c57ad86efd0.tar.gz | |
- add a test specific to sqlite testing cursor.description encoding (should
probably be one in test_query or test_unicode...)
- fix up test_unitofwork
Diffstat (limited to 'lib/sqlalchemy/engine')
| -rw-r--r-- | lib/sqlalchemy/engine/result.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/engine/result.py b/lib/sqlalchemy/engine/result.py index 65ce3b742..4261a5877 100644 --- a/lib/sqlalchemy/engine/result.py +++ b/lib/sqlalchemy/engine/result.py @@ -215,6 +215,8 @@ class ResultMetaData(object): processors.append(processor) rec = (processor, obj, i) +# name.encode('ascii') + # indexes as keys. This is only needed for the Python version of # RowProxy (the C version uses a faster path for integer indexes). primary_keymap[i] = rec |
