diff options
Diffstat (limited to 'coverage/templite.py')
-rw-r--r-- | coverage/templite.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/coverage/templite.py b/coverage/templite.py index 8595b868..f131f748 100644 --- a/coverage/templite.py +++ b/coverage/templite.py @@ -1,7 +1,12 @@ # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 # For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt -"""A simple Python template renderer, for a nano-subset of Django syntax.""" +"""A simple Python template renderer, for a nano-subset of Django syntax. + +For a detailed discussion of this code, see this chapter from 500 Lines: +http://aosabook.org/en/500L/a-template-engine.html + +""" # Coincidentally named the same as http://code.activestate.com/recipes/496702/ |