Changeset 1526
- Timestamp:
- 12/11/06 17:12:07
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/cherrypy-2.x/cherrypy/_cpthreadinglocal.py
r762 r1526 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))

