diff options
author | Jason Kirtland <jek@discorporate.us> | 2008-02-22 19:03:44 +0000 |
---|---|---|
committer | Jason Kirtland <jek@discorporate.us> | 2008-02-22 19:03:44 +0000 |
commit | e203b4dd4e2ce24e18fbeb9db515b2bdbbb56bc5 (patch) | |
tree | 5e8127379e1ca1d72f4e4077d601a399bf6dd276 /lib/sqlalchemy/ext/associationproxy.py | |
parent | b1c9082c9486887eaff3ccf95887a2618b939642 (diff) | |
download | sqlalchemy-e203b4dd4e2ce24e18fbeb9db515b2bdbbb56bc5.tar.gz |
- Converted MAGICCOOKIE=object() to a little symbol implementation to ease object inspection and debugging
Diffstat (limited to 'lib/sqlalchemy/ext/associationproxy.py')
-rw-r--r-- | lib/sqlalchemy/ext/associationproxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/ext/associationproxy.py b/lib/sqlalchemy/ext/associationproxy.py index 1e237a857..bbfb1bcda 100644 --- a/lib/sqlalchemy/ext/associationproxy.py +++ b/lib/sqlalchemy/ext/associationproxy.py @@ -448,7 +448,7 @@ class _AssociationList(object): def __hash__(self): raise TypeError("%s objects are unhashable" % type(self).__name__) -_NotProvided = object() +_NotProvided = util.symbol('_NotProvided') class _AssociationDict(object): """Generic proxying list which proxies dict operations to a another dict, converting association objects to and from a simplified value. |