Changes between Version 4 and Version 5 of DosAndDontsForApplicationWriters


Ignore:
Timestamp:
Oct 20, 2005, 9:58:22 AM (19 years ago)
Author:
Sune Kirkeby <sune.kirkeby@…>
Comment:

Should be 2.3-safe

Legend:

Unmodified
Added
Removed
Modified
  • DosAndDontsForApplicationWriters

    v4 v5  
    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   {{{
     22def foo(answer):
     23    ...
     24foo = decorate(foo)
     25}}}
    1726
    1827== Templates ==
Back to Top