From d0cc4f0b49d4b9a4eff46741ffbaeb34cbe0fc6b Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Tue, 16 Apr 2002 01:51:25 +0000 Subject: [PATCH] resetwarnings(): Remove extra space from docstring guts. --- Lib/warnings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/warnings.py b/Lib/warnings.py index c3c9ecaf8f8..435f1a79d8a 100644 --- a/Lib/warnings.py +++ b/Lib/warnings.py @@ -139,7 +139,7 @@ def filterwarnings(action, message="", category=Warning, module="", lineno=0, filters.insert(0, item) def resetwarnings(): - """Clear the list of warning filters, so that no filters are active.""" + """Clear the list of warning filters, so that no filters are active.""" filters[:] = [] class _OptionError(Exception):