From eee9b55f0ccaa5243442a59788acaa04be6ac6be Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 20 Jan 2011 13:32:59 -0500 Subject: 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 :) ) --- lib/sqlalchemy/sql/expression.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/sqlalchemy/sql') 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)): -- cgit v1.2.1