Changeset 4086
- Timestamp:
- 11/19/06 08:20:21 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/multiple-db-support/django/db/__init__.py
r3768 r4086 272 272 def __set__(self, instance, value): 273 273 try: 274 self.local.cnx[instance] = instance_connection274 self.local.cnx[instance] = value 275 275 except AttributeError: 276 276 # First access in thread 277 self.local.cnx = {instance: instance_connection}277 self.local.cnx = {instance: value} 278 278 279 279 def __delete__(self, instance):
