diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-01-20 13:32:59 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-01-20 13:32:59 -0500 |
| commit | eee9b55f0ccaa5243442a59788acaa04be6ac6be (patch) | |
| tree | bc2c4193f6c5db656ab9cc019257c9a6f800a0ca /lib/sqlalchemy/sql | |
| parent | 07440265c4da9d62671a9ce946c72fd2cda2f0ef (diff) | |
| download | sqlalchemy-eee9b55f0ccaa5243442a59788acaa04be6ac6be.tar.gz | |
rename 'frozendict' to 'immutabledict', since 'frozen' implies hashability
like frozenset which isn't really the purpose of 'immutabledict' (could be someday,
in which case, we'd change the name back :) )
Diffstat (limited to 'lib/sqlalchemy/sql')
| -rw-r--r-- | lib/sqlalchemy/sql/expression.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py index 8a9d33d55..64274359b 100644 --- a/lib/sqlalchemy/sql/expression.py +++ b/lib/sqlalchemy/sql/expression.py @@ -2556,7 +2556,7 @@ class Executable(_Generative): """ supports_execution = True - _execution_options = util.frozendict() + _execution_options = util.immutabledict() @_generative def execution_options(self, **kw): @@ -4003,7 +4003,7 @@ class Select(_SelectBase): __visit_name__ = 'select' _prefixes = () - _hints = util.frozendict() + _hints = util.immutabledict() def __init__(self, columns, @@ -4457,7 +4457,7 @@ class UpdateBase(Executable, ClauseElement): _execution_options = \ Executable._execution_options.union({'autocommit': True}) - kwargs = util.frozendict() + kwargs = util.immutabledict() def _process_colparams(self, parameters): if isinstance(parameters, (list, tuple)): |
