diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-02 08:15:45 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-02 08:15:45 -0400 |
commit | b1965785bb61b2fec4af17d79e5d5ec35df4bb40 (patch) | |
tree | 378545f2835c0832a1f539c7af39add631385076 /coverage/templite.py | |
parent | 5bbad2388f834c92fbdcb9011955e339f137a31e (diff) | |
download | python-coveragepy-b1965785bb61b2fec4af17d79e5d5ec35df4bb40.tar.gz |
Link to 500 Lines from templite.py
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 8595b86..f131f74 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/ |