summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2017-02-28 20:37:01 -0600
committerGitHub <noreply@github.com>2017-02-28 20:37:01 -0600
commit149cb40bad9191fa71b1d6ce01f9d6e50bb1eea6 (patch)
tree6fec6317d125bc802edca26eab8c2c5037494489 /docs/glossary.rst
parentd3cb4b5796f341da609fe3397e31be67c68b32c1 (diff)
parent56d44e441b03aae53430adfeee6bc6b11ab2a2c9 (diff)
downloadpyramid-149cb40bad9191fa71b1d6ce01f9d6e50bb1eea6.tar.gz
pyramid-149cb40bad9191fa71b1d6ce01f9d6e50bb1eea6.tar.bz2
pyramid-149cb40bad9191fa71b1d6ce01f9d6e50bb1eea6.zip
Merge pull request #2964 from mmerickel/execution-policy
add an IExecutionPolicy
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index 0f299c169..0a46fac3b 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -1154,3 +1154,8 @@ Glossary
coverage
A measurement of code coverage, usually expressed as a percentage of which lines of code have been executed over which lines are executable, typically run during test execution.
+
+ execution policy
+ A policy which wraps the :term:`router` by creating the request object
+ and sending it through the request pipeline.
+ See :class:`pyramid.config.Configurator.set_execution_policy`.