Changeset 264
- Timestamp:
- Jan 29, 2008, 11:46:07 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/web/webcommon.py
r261 r264 49 49 def clear(self): 50 50 """Clear the state so future accesses reload it.""" 51 for attr in self.__dict__:51 for attr in list(self.__dict__): 52 52 if attr.startswith('__cache_'): 53 53 delattr(self, attr)
Note: See TracChangeset
for help on using the changeset viewer.