glossary.rst 308 B

123456789101112131415
  1. .. _glossary:
  2. ********
  3. Glossary
  4. ********
  5. .. if you add new entries, keep the alphabetical sorting!
  6. .. glossary::
  7. context manager
  8. An object which controls the environment seen in a :keyword:`with`
  9. statement by defining :meth:`__enter__` and :meth:`__exit__` methods.
  10. See :pep:`343`.