Changes between Initial Version and Version 1 of Ticket #5701


Ignore:
Timestamp:
Oct 7, 2007, 11:25:57 PM (17 years ago)
Author:
Jeremy Dunck
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5701 – Description

    initial v1  
    22
    33Example:
    4 ==============
     4{{{
    55def decorate(f):
    66   def wrap(*args, **kwargs):
     
    1313   "Adds stuff"
    1414   return augend + addend
    15 
     15}}}
    1616Introspecting add_to, undecorated, would have a __name__ of 'add_to'
    1717and __doc__ of 'Adds stuff'.
Back to Top