From 2b2bec6b973b6cbf774b7c584445b73c961b31ab Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Wed, 16 Dec 2015 14:29:39 -0200 Subject: [PATCH] Remove experimental status from pytest_exception_interact --- _pytest/hookspec.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/_pytest/hookspec.py b/_pytest/hookspec.py index 113915d2d..6fd849b40 100644 --- a/_pytest/hookspec.py +++ b/_pytest/hookspec.py @@ -282,12 +282,11 @@ def pytest_keyboard_interrupt(excinfo): """ called for keyboard interrupt. """ def pytest_exception_interact(node, call, report): - """ (experimental, new in 2.4) called when - an exception was raised which can potentially be + """called when an exception was raised which can potentially be interactively handled. This hook is only called if an exception was raised - that is not an internal exception like "skip.Exception". + that is not an internal exception like ``skip.Exception``. """ def pytest_enter_pdb():