From 2c0b5c664ba7d36dc09788d3778d5b33e3fa1bd0 Mon Sep 17 00:00:00 2001 From: Marco Buttu Date: Thu, 13 Apr 2017 13:30:25 +0200 Subject: [PATCH] bpo-30055: add testcleanup to leave a fresh context (#1094) --- Doc/library/decimal.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index e984edcb75..f2a677e693 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -23,6 +23,11 @@ # make sure each group gets a fresh context setcontext(Context()) +.. testcleanup:: * + + # make sure other tests (outside this file) get a fresh context + setcontext(Context()) + -------------- The :mod:`decimal` module provides support for fast correctly-rounded -- 2.40.0