Search:
Help/Guide
About Trac
Preferences
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Changes between
Version 3
and
Version 4
of
WikiStart
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
06/11/06 23:13:45 (
18 years
ago)
Author:
atzm
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
WikiStart
v3
v4
10
10
def __init__(self):
11
11
for val in self._can_access:
12
setattr(self, val, None)
13
12
setattr(self, 'set_%s' % val, lambda x: setattr(self, val, x))
14
13
setattr(self, 'get_%s' % val, lambda: getattr(self, val))