Issue #4444: Allow assertRaises() to be used as a context handler.

This commit is contained in:
Antoine Pitrou 2008-12-28 14:09:36 +00:00
parent 40f982fbdf
commit 697ca3d0cb
4 changed files with 79 additions and 10 deletions

View file

@ -91,6 +91,9 @@ Core and Builtins
Library
-------
- Issue #4444: Allow assertRaises() to be used as a context handler, so that
the code under test can be written inline if more practical.
- Issue #4739: Add pydoc help topics for symbols, so that e.g. help('@')
works as expected in the interactive environment.