Changes between Version 21 and Version 22 of DosAndDontsForApplicationWriters


Ignore:
Timestamp:
Mar 21, 2012, 3:37:14 PM (12 years ago)
Author:
anonymous
Comment:

removed comments about python 2.3 compatibility

Legend:

Unmodified
Added
Removed
Modified
  • DosAndDontsForApplicationWriters

    v21 v22  
    1515in ibofobi.apps. When I need to refer to paths, I'll use relative
    1616paths rooted at the mnemosyne package directory.
    17 
    18 == Basics ==
    19 
    20  * Your application should be Python 2.3-safe.  Notably you should not use {{{@decorator}}}-syntax, instead do this:
    21    {{{
    22 def foo(answer):
    23     ...
    24 foo = decorate(foo)
    25 }}}
    2617
    2718== Templates ==
Back to Top