I'd like to have some field, (a variable, or string, anything else), in my source code (a Python module), that keep track of last update in this module, when i save it after some modification. This image shows it looks possible in preferences
Where do i put this __updated__="here some date"
field ?
- I've tried to put it as a global (module level) variable
- I've tried to put in the module docstring (as
@__updated__:''
,@__updated__=''
,__updated__:''
,__updated__=''
) and so on...
thank you