Changes between Version 20 and Version 21 of RemovingTheMagic
- Timestamp:
- Dec 18, 2005, 2:18:37 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemovingTheMagic
v20 v21 243 243 == Automatic manipulators == 244 244 245 '''Status: Not yet done'''245 '''Status: Done''' 246 246 247 247 Old: … … 256 256 #!python 257 257 from path.to.myapp.models import Person 258 m1 = Person. get_add_manipulator()()259 m2 = Person. get_change_manipulator()(3)258 m1 = Person.AddManipulator() 259 m2 = Person.ChangeManipulator()(3) 260 260 }}} 261 261