summaryrefslogtreecommitdiff
path: root/coverage/templite.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/templite.py')
-rw-r--r--coverage/templite.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/coverage/templite.py b/coverage/templite.py
index 9f882cf2..f131f748 100644
--- a/coverage/templite.py
+++ b/coverage/templite.py
@@ -1,4 +1,12 @@
-"""A simple Python template renderer, for a nano-subset of Django syntax."""
+# 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.
+
+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/