summaryrefslogtreecommitdiffstats
path: root/Lib/warnings.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-04-16 01:51:25 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-04-16 01:51:25 (GMT)
commitd0cc4f0b49d4b9a4eff46741ffbaeb34cbe0fc6b (patch)
tree8f09cc528e97a4b7198affd77c701ae68d4559dd /Lib/warnings.py
parent863ac44b74cd66f7d289748816d65c65808c149b (diff)
downloadcpython-d0cc4f0b49d4b9a4eff46741ffbaeb34cbe0fc6b.zip
cpython-d0cc4f0b49d4b9a4eff46741ffbaeb34cbe0fc6b.tar.gz
cpython-d0cc4f0b49d4b9a4eff46741ffbaeb34cbe0fc6b.tar.bz2
resetwarnings(): Remove extra space from docstring guts.
Diffstat (limited to 'Lib/warnings.py')
-rw-r--r--Lib/warnings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/warnings.py b/Lib/warnings.py
index c3c9eca..435f1a7 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):