+
+% for index in range(max(0, line-4),min(len(lines), line+5)):
+ <%
+ if pygments_html_formatter:
+ pygments_html_formatter.linenostart = index + 1
+ %>
+ % if index + 1 == line:
+ <%
+ if pygments_html_formatter:
+ old_cssclass = pygments_html_formatter.cssclass
+ pygments_html_formatter.cssclass = 'error ' + old_cssclass
+ %>
+ ${lines[index] | syntax_highlight(language='mako')}
+ <%
+ if pygments_html_formatter:
+ pygments_html_formatter.cssclass = old_cssclass
+ %>
+ % else:
+ ${lines[index] | syntax_highlight(language='mako')}
+ % endif
+% endfor
+
+
+% endif
+
+
+% for (filename, lineno, function, line) in tback.reverse_traceback:
+
${filename}, line ${lineno}:
+
+ <%
+ if pygments_html_formatter:
+ pygments_html_formatter.linenostart = lineno
+ %>
+
${line | syntax_highlight(filename)}
+
+% endfor
+
+
+% if full:
+
+
+% endif
+""", output_encoding=sys.getdefaultencoding(),
+ encoding_errors='htmlentityreplace')
diff --git a/venv/lib/python3.6/site-packages/mako/ext/__init__.py b/venv/lib/python3.6/site-packages/mako/ext/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/venv/lib/python3.6/site-packages/mako/ext/__pycache__/__init__.cpython-36.pyc b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000..1023872
Binary files /dev/null and b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/__init__.cpython-36.pyc differ
diff --git a/venv/lib/python3.6/site-packages/mako/ext/__pycache__/autohandler.cpython-36.pyc b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/autohandler.cpython-36.pyc
new file mode 100644
index 0000000..8b33d41
Binary files /dev/null and b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/autohandler.cpython-36.pyc differ
diff --git a/venv/lib/python3.6/site-packages/mako/ext/__pycache__/babelplugin.cpython-36.pyc b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/babelplugin.cpython-36.pyc
new file mode 100644
index 0000000..4afa52d
Binary files /dev/null and b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/babelplugin.cpython-36.pyc differ
diff --git a/venv/lib/python3.6/site-packages/mako/ext/__pycache__/beaker_cache.cpython-36.pyc b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/beaker_cache.cpython-36.pyc
new file mode 100644
index 0000000..a4db555
Binary files /dev/null and b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/beaker_cache.cpython-36.pyc differ
diff --git a/venv/lib/python3.6/site-packages/mako/ext/__pycache__/extract.cpython-36.pyc b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/extract.cpython-36.pyc
new file mode 100644
index 0000000..ecce08a
Binary files /dev/null and b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/extract.cpython-36.pyc differ
diff --git a/venv/lib/python3.6/site-packages/mako/ext/__pycache__/linguaplugin.cpython-36.pyc b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/linguaplugin.cpython-36.pyc
new file mode 100644
index 0000000..0c92e26
Binary files /dev/null and b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/linguaplugin.cpython-36.pyc differ
diff --git a/venv/lib/python3.6/site-packages/mako/ext/__pycache__/preprocessors.cpython-36.pyc b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/preprocessors.cpython-36.pyc
new file mode 100644
index 0000000..ee73fe2
Binary files /dev/null and b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/preprocessors.cpython-36.pyc differ
diff --git a/venv/lib/python3.6/site-packages/mako/ext/__pycache__/pygmentplugin.cpython-36.pyc b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/pygmentplugin.cpython-36.pyc
new file mode 100644
index 0000000..ee4cd75
Binary files /dev/null and b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/pygmentplugin.cpython-36.pyc differ
diff --git a/venv/lib/python3.6/site-packages/mako/ext/__pycache__/turbogears.cpython-36.pyc b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/turbogears.cpython-36.pyc
new file mode 100644
index 0000000..8b1db02
Binary files /dev/null and b/venv/lib/python3.6/site-packages/mako/ext/__pycache__/turbogears.cpython-36.pyc differ
diff --git a/venv/lib/python3.6/site-packages/mako/ext/autohandler.py b/venv/lib/python3.6/site-packages/mako/ext/autohandler.py
new file mode 100644
index 0000000..9d1c911
--- /dev/null
+++ b/venv/lib/python3.6/site-packages/mako/ext/autohandler.py
@@ -0,0 +1,68 @@
+# ext/autohandler.py
+# Copyright (C) 2006-2016 the Mako authors and contributors