Changeset 1479
- Timestamp:
- 12/08/06 13:46:54
- Files:
-
- trunk/cherrypy/_cpthreadinglocal.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cpthreadinglocal.py
r762 r1479 143 143 def __new__(cls, *args, **kw): 144 144 self = object.__new__(cls) 145 key = ' _local__key', 'thread.local.' + str(id(self))145 key = 'thread.local.' + str(id(self)) 146 146 object.__setattr__(self, '_local__key', key) 147 147 object.__setattr__(self, '_local__args', (args, kw))

