summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2018-08-04 19:05:58 -0500
committerGitHub <noreply@github.com>2018-08-04 19:05:58 -0500
commit76c066c20f61fe99101e24c3781ed551e710e635 (patch)
tree5433754a62d4ea5925bb1b1587bacc46b6f46f02 /docs/glossary.rst
parentdc2eee4c65657da7d50bea8e2069f728ce012391 (diff)
parent6dd7a85cf2b83ae0f34f4f00a129e8ba2b938fa0 (diff)
downloadpyramid-76c066c20f61fe99101e24c3781ed551e710e635.tar.gz
pyramid-76c066c20f61fe99101e24c3781ed551e710e635.tar.bz2
pyramid-76c066c20f61fe99101e24c3781ed551e710e635.zip
Merge pull request #3307 from Pylons/alembic-cookiecutter-alchemy
Add Alembic support from alchemy cookiecutter
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index 7e16b569e..16a719e10 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -1206,3 +1206,6 @@ Glossary
context manager
A context manager is an object that defines the runtime context to be established when executing a :ref:`with <python:with>` statement in Python. The context manager handles the entry into, and the exit from, the desired runtime context for the execution of the block of code. Context managers are normally invoked using the ``with`` statement, but can also be used by directly invoking their methods. Pyramid adds context managers for :class:`pyramid.config.Configurator`, :meth:`pyramid.interfaces.IRouter.request_context`, :func:`pyramid.paster.bootstrap`, :func:`pyramid.scripting.prepare`, and :func:`pyramid.testing.testConfig`. See also the Python documentation for :ref:`With Statement Context Managers <python:context-managers>` and :pep:`343`.
+
+ Alembic
+ `Alembic <http://alembic.zzzcomputing.com/en/latest/>`_ is a lightweight database migration tool for usage with the SQLAlchemy Database Toolkit for Python.