Changes between Initial Version and Version 1 of Ticket #5701
- Timestamp:
- Oct 7, 2007, 11:25:57 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5701 – Description
initial v1 2 2 3 3 Example: 4 ============== 4 {{{ 5 5 def decorate(f): 6 6 def wrap(*args, **kwargs): … … 13 13 "Adds stuff" 14 14 return augend + addend 15 15 }}} 16 16 Introspecting add_to, undecorated, would have a __name__ of 'add_to' 17 17 and __doc__ of 'Adds stuff'.