From c8f3bf5a70ff74a509a7ec4721797e407a31d507 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Fri, 22 Jun 2018 18:22:21 -0700 Subject: Add mention of migrations and Alembic in design and glossary. --- docs/glossary.rst | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docs/glossary.rst') 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 ` 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 ` and :pep:`343`. + + Alembic + `Alembic `_ is a lightweight database migration tool for usage with the SQLAlchemy Database Toolkit for Python. -- cgit v1.2.3